| 
									
										
										
										
											2023-08-09 21:57:57 +00:00
										 |  |  | version: "3.8"
 | 
					
						
							| 
									
										
										
										
											2022-07-28 17:46:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | services:
 | 
					
						
							|  |  |  |   tailscale:
 | 
					
						
							|  |  |  |     container_name: tailscale
 | 
					
						
							|  |  |  |     network_mode: "host" # TODO: Find a way to remove this
 | 
					
						
							| 
									
										
										
										
											2024-02-22 20:43:26 +00:00
										 |  |  |     image: tailscale/tailscale:v1.61.11
 | 
					
						
							| 
									
										
										
										
											2022-07-28 17:46:12 +00:00
										 |  |  |     privileged: true
 | 
					
						
							|  |  |  |     restart: on-failure
 | 
					
						
							|  |  |  |     stop_grace_period: 1m
 | 
					
						
							|  |  |  |     command: "sh -c 'tailscale web --listen 0.0.0.0:${APP_PORT} & exec tailscaled --tun=userspace-networking'"
 | 
					
						
							|  |  |  |     volumes:
 | 
					
						
							|  |  |  |       - /var/lib:/var/lib
 | 
					
						
							|  |  |  |       - /dev/net/tun:/dev/net/tun
 | 
					
						
							| 
									
										
										
										
											2023-08-09 21:57:57 +00:00
										 |  |  |     healthcheck:
 | 
					
						
							|  |  |  |       test: wget --no-verbose --tries=1 --spider http://localhost:${APP_PORT}
 | 
					
						
							|  |  |  |       interval: 10s
 | 
					
						
							|  |  |  |       timeout: 5s
 | 
					
						
							|  |  |  |       retries: 5
 | 
					
						
							|  |  |  |       start_period: 30s
 |