homeserver/dashboard/docker-compose.yaml
2024-04-09 15:36:15 +02:00

23 lines
524 B
YAML

services:
homer:
image: b4bz/homer
volumes:
- ${VOLUMES_PATH}/dashboard/homer:/www/assets
networks:
- web
user: 1000:1000
environment:
- INIT_ASSETS=1
labels:
- "traefik.enable=true"
- "traefik.http.routers.homer.rule=Host(`dashboard.${DOMAIN}`)"
- "traefik.http.routers.homer.entrypoints=web"
- "traefik.http.services.homer.loadbalancer.server.port=8080"
- "docker.group=dashboard"
restart: unless-stopped
networks:
web:
external: true