From 9934c3da433973188f631b4a65dcc0999c1c2bbb Mon Sep 17 00:00:00 2001 From: Gabe Date: Sun, 22 Feb 2026 00:58:04 +0000 Subject: [PATCH] Update File_Containers/syncthing/compose.yaml --- File_Containers/syncthing/compose.yaml | 35 +++++++++++++++++++++++--- 1 file changed, 32 insertions(+), 3 deletions(-) diff --git a/File_Containers/syncthing/compose.yaml b/File_Containers/syncthing/compose.yaml index 9a39daf..409c2cf 100644 --- a/File_Containers/syncthing/compose.yaml +++ b/File_Containers/syncthing/compose.yaml @@ -6,13 +6,42 @@ services: environment: - PUID=1000 - PGID=1000 - - TZ=CST/UTC + - TZ=America/Chicago volumes: - /srv/docker/syncthing/config:/config - - /mnt/DMZ_smb_share/Gabe's Music:/data + - ${PATH_NAME}:/data ports: - 8384:8384 - 22000:22000/tcp - 22000:22000/udp - 21027:21027/udp - restart: unless-stopped \ No newline at end of file + networks: + - traefik_network + labels: + ### Auto create icon on Flame dashboard + - flame.type=application + - flame.name=${SERVICE_NAME} + - flame.url=https://${SERVICE_NAME}.${DOMAIN_NAME} + - flame.icon=https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/syncthing.svg + ### 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}`) + ### Monitor with uptime-kuma + - kuma.monitoring.group.name=Docker Containers + - kuma.${SERVICE_NAME}.docker.parent_name=monitoring + - kuma.${SERVICE_NAME}.docker.name=${SERVICE_NAME} + - kuma.${SERVICE_NAME}.docker.type=docker + - kuma.${SERVICE_NAME}.docker.docker_container=${SERVICE_NAME} + - kuma.${SERVICE_NAME}.docker.docker_host=1 + - 'kuma.${SERVICE_NAME}.docker.tag_names=[{"name": "docker_tag"}]' + restart: unless-stopped +networks: + traefik_network: + external: true \ No newline at end of file