Add syncthing (work in progress)

This commit is contained in:
Jean Froment 2022-02-14 10:46:30 +01:00
parent 9be95c234e
commit 79a5df6980
2 changed files with 31 additions and 0 deletions

View File

@ -23,4 +23,5 @@ nextcloud: enable
portainer: enable
netdata: enable
duplicati: enable
syncthing: disable
gluetun: disable

30
services/syncthing.yaml Normal file
View File

@ -0,0 +1,30 @@
services:
syncthing:
image: lscr.io/linuxserver/syncthing
container_name: syncthing
restart: unless-stopped
environment:
- PGID=${PGID}
- PUID=${PUID}
- TZ=${TZ}
volumes:
- configsyncthing:/config
- torrents:/torrents
# ports:
# #- 8384:8384
# - 22000:22000/tcp
# - 22000:22000/udp
# - 21027:21027/udp
labels:
- "traefik.enable=true"
- "traefik.http.routers.syncthing.rule=Host(`syncthing.${TRAEFIK_DOMAIN}`)"
- "traefik.http.routers.syncthing.middlewares=common-auth@file"
- "traefik.http.services.syncthing-seedbox.loadbalancer.server.port=8384"
- "traefik.http.routers.synchro.rule=Host(`synchro.${TRAEFIK_DOMAIN}`)"
- "traefik.http.services.synchro-seedbox.loadbalancer.server.port=22000"
volumes:
configsyncthing:
driver: local-persist
driver_opts:
mountpoint: $HOST_CONFIG_PATH/configsyncthing