diff --git a/docker/pi5/docker-compose.yaml b/docker/pi5/docker-compose.yaml index d3c7808..776bb86 100755 --- a/docker/pi5/docker-compose.yaml +++ b/docker/pi5/docker-compose.yaml @@ -1,5 +1,24 @@ --- services: + dashy: + image: lissy93/dashy + container_name: Dashy + volumes: + - /config/dashy/:/app/user-data/ + ports: + - 8083:8080 + # Set any environmental variables + environment: + - NODE_ENV=production + - UID=1000 + - GID=1000 + restart: unless-stopped + healthcheck: + test: ['CMD', 'node', '/app/services/healthcheck'] + interval: 1m30s + timeout: 10s + retries: 3 + start_period: 40s pihole: container_name: pihole image: pihole/pihole:latest @@ -59,7 +78,7 @@ services: - LOG_LEVEL=${LOG_LEVEL:-info} - LOG_HTML=${LOG_HTML:-false} - CAPTCHA_SOLVER=${CAPTCHA_SOLVER:-none} - - TZ=Europe/London + - TZ=Europe/Paris ports: - "${PORT:-8191}:8191" restart: unless-stopped