feat: dryer counter initial commot
This commit is contained in:
21
docker-compose.yml
Normal file
21
docker-compose.yml
Normal file
@ -0,0 +1,21 @@
|
||||
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
|
||||
Reference in New Issue
Block a user