Files
watch-stock-list/docker-compose.yml

18 lines
409 B
YAML
Raw Normal View History

2025-07-29 13:52:36 +08:00
services:
watch-stock-list:
image: watch-stock-list:latest
container_name: watch-stock-list-app
ports:
2025-07-29 13:54:02 +08:00
- "7799:7799"
2025-07-29 13:52:36 +08:00
environment:
- NODE_ENV=production
2025-07-29 13:54:02 +08:00
- PORT=7799
2025-07-29 13:52:36 +08:00
- HOSTNAME=0.0.0.0
restart: unless-stopped
healthcheck:
2025-07-29 13:54:02 +08:00
test: ["CMD", "curl", "-f", "http://localhost:7799"]
2025-07-29 13:52:36 +08:00
interval: 30s
timeout: 10s
retries: 3
start_period: 40s