fix: remove SERVER_HOSTNAME default values causing errors

- Change ${SERVER_HOSTNAME:-debian} to ${SERVER_HOSTNAME} in Sablier groups
- Prevents empty default values that were causing configuration errors
- Applied to dashboards, infrastructure, media, productivity, and utilities stacks
This commit is contained in:
EZ-Homelab
2026-01-23 18:50:10 -05:00
parent 3723cebe9c
commit 436ff0d035
5 changed files with 19 additions and 19 deletions

View File

@@ -71,7 +71,7 @@ services:
- "traefik.http.services.jellyfin.loadbalancer.server.port=8096"
# Sablier configuration
- "sablier.enable=true"
- "sablier.group=${SERVER_HOSTNAME:-debian}-jellyfin"
- "sablier.group=${SERVER_HOSTNAME}-jellyfin"
- "sablier.start-on-demand=true"
- "sablier.theme=hacker-terminal"
@@ -120,7 +120,7 @@ services:
- "traefik.http.services.calibre.loadbalancer.server.port=8083"
# Sablier configuration (disabled by default)
# - "sablier.enable=true"
# - "sablier.group=${SERVER_HOSTNAME:-debian}-calibre-web"
# - "sablier.group=${SERVER_HOSTNAME}-calibre-web"
# - "sablier.start-on-demand=true"
# ==========================================