From c184d9751f38e5d30e754c7af9df72e5213d2f25 Mon Sep 17 00:00:00 2001 From: Gabe Date: Wed, 18 Feb 2026 02:00:40 +0000 Subject: [PATCH] Update Dashboard_Containers/organizr/compose.yaml --- Dashboard_Containers/organizr/compose.yaml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/Dashboard_Containers/organizr/compose.yaml b/Dashboard_Containers/organizr/compose.yaml index 064aba9..7adf598 100644 --- a/Dashboard_Containers/organizr/compose.yaml +++ b/Dashboard_Containers/organizr/compose.yaml @@ -12,4 +12,20 @@ services: environment: - PUID=1000 - PGID=1000 - - TZ=CST/UTC \ No newline at end of file + - TZ=CST/UTC + networks: + - traefik_network + labels: + ### Enable Traefik + - traefik.enable=true + ### For HTTP + #- traefik.http.routers.${SERVICE_NAME}.rule=Host(`${SERVICE_NAME}.${DOMAIN_NAME}`) + #- traefik.http.routers.${SERVICE_NAME}.entrypoints=web + ### For HTTPS + - traefik.http.routers.${SERVICE_NAME}-https.tls=true + - traefik.http.routers.${SERVICE_NAME}-https.tls.certresolver=cloudflare + - traefik.http.routers.${SERVICE_NAME}-https.entrypoints=websecure + - traefik.http.routers.${SERVICE_NAME}-https.rule=Host(`${SERVICE_NAME}.${DOMAIN_NAME}`) +networks: + traefik_network: + external: true \ No newline at end of file