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:
- "3000:3000"
environment:
- NODE_ENV=production
- PORT=3000
- HOSTNAME=0.0.0.0
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s