You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
460 B
19 lines
460 B
version: "3.7"
|
|
services:
|
|
dashy:
|
|
container_name: dashy
|
|
image: lissy93/dashy:2.0.6
|
|
volumes:
|
|
- /mnt/docker_volumes/dashy/config/conf.yml:/app/public/conf.yml
|
|
ports:
|
|
- 4000:80
|
|
environment:
|
|
- TZ=Europe/London
|
|
- NODE_ENV=production
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ['CMD', 'node', '/app/services/healthcheck']
|
|
interval: 1m30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|
|
|