2023-02-15 21:45:31 +00:00
|
|
|
services:
|
2024-11-04 12:08:51 +00:00
|
|
|
|
2023-02-15 21:45:31 +00:00
|
|
|
dashy:
|
2024-11-04 12:08:51 +00:00
|
|
|
image: lissy93/dashy
|
2023-02-15 21:45:31 +00:00
|
|
|
container_name: dashy
|
|
|
|
hostname: dashy
|
|
|
|
volumes:
|
2023-02-25 13:09:52 +00:00
|
|
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/dashy/config/config.yml:/app/public/conf.yml
|
|
|
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/dashy/icons:/app/public/item-icons
|
2023-02-15 21:45:31 +00:00
|
|
|
environment:
|
|
|
|
- NODE_ENV=production
|
|
|
|
- UID=1000
|
|
|
|
- GID=1000
|
|
|
|
restart: unless-stopped
|
2023-03-20 22:32:06 +00:00
|
|
|
ports:
|
2024-11-04 12:08:51 +00:00
|
|
|
- 4000:80
|
|
|
|
expose:
|
|
|
|
- 80
|
2023-02-15 21:45:31 +00:00
|
|
|
healthcheck:
|
|
|
|
test: ['CMD', 'node', '/app/services/healthcheck']
|
|
|
|
interval: 1m30s
|
|
|
|
timeout: 10s
|
|
|
|
retries: 3
|
|
|
|
start_period: 40s
|