18 lines
409 B
YAML
18 lines
409 B
YAML
|
|
services:
|
|
watch-stock-list:
|
|
image: watch-stock-list:latest
|
|
container_name: watch-stock-list-app
|
|
ports:
|
|
- "7799:7799"
|
|
environment:
|
|
- NODE_ENV=production
|
|
- PORT=7799
|
|
- HOSTNAME=0.0.0.0
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:7799"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s |