feat: docker compose files for new homelab services

This commit is contained in:
theoleuthardt 2025-08-19 16:52:22 +00:00
parent c63c73e20f
commit 78f4f39789
30 changed files with 1337 additions and 21 deletions

22
dashy/docker-compose.yaml Normal file
View file

@ -0,0 +1,22 @@
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