19 lines
470 B
Django/Jinja
19 lines
470 B
Django/Jinja
services:
|
|
dashy:
|
|
image: lissy93/dashy
|
|
container_name: dashy
|
|
restart: unless-stopped
|
|
ports:
|
|
- "{{ dashy_port }}:8080"
|
|
volumes:
|
|
- {{ dashy_config_dir }}/conf.yml:/app/user-data/conf.yml
|
|
environment:
|
|
- NODE_ENV=production
|
|
- UID=1000
|
|
- GID=1000
|
|
healthcheck:
|
|
test: ['CMD', 'node', '/app/services/healthcheck']
|
|
interval: 1m30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s |