23 lines
516 B
YAML
23 lines
516 B
YAML
---
|
|
version: "3.8"
|
|
services:
|
|
dashy:
|
|
image: lissy93/dashy
|
|
container_name: Dashy
|
|
# Pass in your config file below, by specifying the path on your host machine
|
|
volumes:
|
|
- ./config.yml:/app/public/conf.yml
|
|
ports:
|
|
- 8000:80
|
|
environment:
|
|
- NODE_ENV=production
|
|
- UID=1000
|
|
- GID=1000
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ['CMD', 'node', '/app/services/healthcheck']
|
|
interval: 1m30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|