feat: add thelounge

This commit is contained in:
Viren070
2025-07-08 22:16:52 +01:00
parent b34cd9d1f2
commit 9303aeee56
4 changed files with 23 additions and 0 deletions
+1
View File
@@ -167,6 +167,7 @@ STREMIO_SERVER_HOSTNAME=stremio-server.${DOMAIN}
STREMIO_TRAKT_ADDON_HOSTNAME=stremio-trakt.${DOMAIN}
STREMTHRU_HOSTNAME=stremthru.${DOMAIN}
TAUTULLI_HOSTNAME=tautulli.${DOMAIN}
THE_LOUNGE_HOSTNAME=thelounge.${DOMAIN}
TMDB_ADDON_HOSTNAME=tmdb.${DOMAIN}
TORBOX_MANAGER_HOSTNAME=tbm.${DOMAIN}
TRAEFIK_HOSTNAME=traefik.${DOMAIN}
+1
View File
@@ -66,6 +66,7 @@ services:
${STREMIO_TRAKT_ADDON_HOSTNAME},
${STREMTHRU_HOSTNAME},
${TAUTULLI_HOSTNAME},
${THE_LOUNGE_HOSTNAME},
${TMDB_ADDON_HOSTNAME},
${TORBOX_MANAGER_HOSTNAME},
${TRAEFIK_HOSTNAME},
+20
View File
@@ -0,0 +1,20 @@
services:
thelounge:
image: ghcr.io/thelounge/thelounge:latest
container_name: thelounge
restart: unless-stopped
user: ${PUID}:${PGID}
expose:
- 9000
labels:
- "traefik.enable=true"
- "traefik.http.routers.thelounge.rule=Host(`${THE_LOUNGE_HOSTNAME?}`)"
- "traefik.http.routers.thelounge.entrypoints=websecure"
- "traefik.http.routers.thelounge.tls.certresolver=letsencrypt"
- "traefik.http.routers.thelounge.middlewares=authelia@docker"
volumes:
- ${DOCKER_DATA_DIR}/thelounge:/var/opt/thelounge
profiles:
- thelounge
- all
+1
View File
@@ -56,6 +56,7 @@ include:
- apps/stremio-trakt-addon/compose.yaml
- apps/stremthru/compose.yaml
- apps/tautulli/compose.yaml
- apps/thelounge/compose.yaml
- apps/tmdb-addon/compose.yaml
- apps/torbox-manager/compose.yaml
- apps/torbox-media-center/compose.yaml