22 lines
428 B
YAML
22 lines
428 B
YAML
services:
|
|
dryer-counter:
|
|
build: ./dryer-counter
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- dryer-data:/app/data
|
|
environment:
|
|
- NODE_ENV=production
|
|
- PORT=3000
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--spider", "-q", "http://localhost:3000"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 10s
|
|
|
|
volumes:
|
|
dryer-data:
|
|
driver: local
|