mirror of
https://github.com/theoleuthardt/homelab-docker-compose.git
synced 2026-06-05 15:41:07 +00:00
22 lines
575 B
YAML
22 lines
575 B
YAML
services:
|
|
dashy:
|
|
image: lissy93/dashy:latest
|
|
container_name: dashy
|
|
volumes:
|
|
- ./config.yml:/app/user-data/conf.yml
|
|
ports:
|
|
- 9999:8080
|
|
environment:
|
|
- NODE_ENV=production
|
|
# Specify your user ID and group ID. You can find this by running `id -u` and `id -g`
|
|
- UID=1000
|
|
- GID=1000
|
|
# Specify restart policy
|
|
restart: unless-stopped
|
|
# Configure healthchecks
|
|
healthcheck:
|
|
test: ['CMD', 'node', '/app/services/healthcheck']
|
|
interval: 1m30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|