22 lines
434 B
YAML
22 lines
434 B
YAML
---
|
|
services:
|
|
dashy:
|
|
image: lissy93/dashy:latest
|
|
container_name: dashy
|
|
volumes:
|
|
- ./config:/app/user-data
|
|
ports:
|
|
- 80:8080
|
|
environment:
|
|
- UID
|
|
- GID
|
|
- NODE_ENV=production
|
|
- TZ=America/New_York
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "node", "/app/services/healthcheck"]
|
|
interval: 1m30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|