| 
									
										
										
										
											2022-07-28 17:46:12 +00:00
										 |  |  | version: "3.7"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | services:
 | 
					
						
							|  |  |  |   syncthing:
 | 
					
						
							|  |  |  |     container_name: syncthing
 | 
					
						
							| 
									
										
										
										
											2023-12-04 09:27:39 +00:00
										 |  |  |     image: syncthing/syncthing:1.27
 | 
					
						
							| 
									
										
										
										
											2022-07-28 17:46:12 +00:00
										 |  |  |     stop_grace_period: 1m
 | 
					
						
							|  |  |  |     hostname: tipi
 | 
					
						
							|  |  |  |     environment:
 | 
					
						
							|  |  |  |       - PUID=1000
 | 
					
						
							|  |  |  |       - PGID=1000
 | 
					
						
							|  |  |  |     volumes:
 | 
					
						
							|  |  |  |       - ${APP_DATA_DIR}/data:/var/syncthing
 | 
					
						
							| 
									
										
										
										
											2023-07-19 20:10:29 +00:00
										 |  |  |       - ${ROOT_FOLDER_HOST}/media/data/syncthing:/media/data/syncthing
 | 
					
						
							| 
									
										
										
										
											2022-07-28 17:46:12 +00:00
										 |  |  |     ports:
 | 
					
						
							|  |  |  |       - ${APP_PORT}:8384
 | 
					
						
							|  |  |  |       - 22000:22000/tcp # TCP file transfers
 | 
					
						
							|  |  |  |       - 22000:22000/udp # QUIC file transfers
 | 
					
						
							|  |  |  |       - 21027:21027/udp # Receive local discovery broadcasts
 | 
					
						
							|  |  |  |     restart: unless-stopped
 | 
					
						
							|  |  |  |     networks:
 | 
					
						
							|  |  |  |       - tipi_main_network
 | 
					
						
							| 
									
										
										
										
											2022-11-11 19:33:58 +00:00
										 |  |  |     labels:
 | 
					
						
							| 
									
										
										
										
											2023-06-18 16:02:29 +00:00
										 |  |  |       # Main
 | 
					
						
							|  |  |  |       traefik.enable: true
 | 
					
						
							|  |  |  |       traefik.http.middlewares.syncthing-web-redirect.redirectscheme.scheme: https
 | 
					
						
							|  |  |  |       traefik.http.services.syncthing.loadbalancer.server.port: 8384
 | 
					
						
							|  |  |  |       # Web
 | 
					
						
							|  |  |  |       traefik.http.routers.syncthing-insecure.rule: Host(`${APP_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.syncthing-insecure.entrypoints: web
 | 
					
						
							|  |  |  |       traefik.http.routers.syncthing-insecure.service: syncthing
 | 
					
						
							|  |  |  |       traefik.http.routers.syncthing-insecure.middlewares: syncthing-web-redirect
 | 
					
						
							|  |  |  |       # Websecure
 | 
					
						
							| 
									
										
										
										
											2022-11-11 19:33:58 +00:00
										 |  |  |       traefik.http.routers.syncthing.rule: Host(`${APP_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.syncthing.entrypoints: websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.syncthing.service: syncthing
 | 
					
						
							|  |  |  |       traefik.http.routers.syncthing.tls.certresolver: myresolver
 | 
					
						
							| 
									
										
										
										
											2023-06-18 16:02:29 +00:00
										 |  |  |       # Local domain
 | 
					
						
							|  |  |  |       traefik.http.routers.syncthing-local-insecure.rule: Host(`syncthing.${LOCAL_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.syncthing-local-insecure.entrypoints: web
 | 
					
						
							|  |  |  |       traefik.http.routers.syncthing-local-insecure.service: syncthing
 | 
					
						
							|  |  |  |       traefik.http.routers.syncthing-local-insecure.middlewares: syncthing-web-redirect
 | 
					
						
							|  |  |  |       # Local domain secure
 | 
					
						
							|  |  |  |       traefik.http.routers.syncthing-local.rule: Host(`syncthing.${LOCAL_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.syncthing-local.entrypoints: websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.syncthing-local.service: syncthing
 | 
					
						
							|  |  |  |       traefik.http.routers.syncthing-local.tls: true
 |