| 
									
										
										
										
											2022-07-28 17:46:12 +00:00
										 |  |  | version: "3.7"
 | 
					
						
							|  |  |  | services:
 | 
					
						
							|  |  |  |   adguard:
 | 
					
						
							| 
									
										
										
										
											2024-04-05 17:30:19 +00:00
										 |  |  |     image: adguard/adguardhome:v0.107.48
 | 
					
						
							| 
									
										
										
										
											2022-07-28 17:46:12 +00:00
										 |  |  |     container_name: adguard
 | 
					
						
							|  |  |  |     volumes:
 | 
					
						
							|  |  |  |       - "${APP_DATA_DIR}/data/work:/opt/adguardhome/work"
 | 
					
						
							|  |  |  |       - "${APP_DATA_DIR}/data/conf:/opt/adguardhome/conf"
 | 
					
						
							|  |  |  |     restart: unless-stopped
 | 
					
						
							|  |  |  |     networks:
 | 
					
						
							|  |  |  |       - tipi_main_network
 | 
					
						
							|  |  |  |     ports:
 | 
					
						
							| 
									
										
										
										
											2022-09-23 13:13:04 +00:00
										 |  |  |       - ${NETWORK_INTERFACE:-0.0.0.0}:53:53/tcp
 | 
					
						
							|  |  |  |       - ${NETWORK_INTERFACE:-0.0.0.0}:53:53/udp
 | 
					
						
							| 
									
										
										
										
											2024-01-05 06:53:50 +00:00
										 |  |  |       - ${NETWORK_INTERFACE:-0.0.0.0}:853:853/tcp
 | 
					
						
							|  |  |  |       - ${NETWORK_INTERFACE:-0.0.0.0}:853:853/udp
 | 
					
						
							| 
									
										
										
										
											2022-07-28 17:46:12 +00:00
										 |  |  |       - ${APP_PORT}:80
 | 
					
						
							| 
									
										
										
										
											2022-11-11 19:33:58 +00:00
										 |  |  |     labels:
 | 
					
						
							| 
									
										
										
										
											2023-06-10 14:46:05 +00:00
										 |  |  |       # Main
 | 
					
						
							|  |  |  |       traefik.enable: true
 | 
					
						
							|  |  |  |       traefik.http.middlewares.adguard-web-redirect.redirectscheme.scheme: https
 | 
					
						
							|  |  |  |       traefik.http.services.adguard.loadbalancer.server.port: 80
 | 
					
						
							|  |  |  |       # Web
 | 
					
						
							|  |  |  |       traefik.http.routers.adguard-insecure.rule: Host(`${APP_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.adguard-insecure.entrypoints: web
 | 
					
						
							|  |  |  |       traefik.http.routers.adguard-insecure.service: adguard
 | 
					
						
							|  |  |  |       traefik.http.routers.adguard-insecure.middlewares: adguard-web-redirect
 | 
					
						
							|  |  |  |       # Websecure
 | 
					
						
							| 
									
										
										
										
											2022-11-11 19:33:58 +00:00
										 |  |  |       traefik.http.routers.adguard.rule: Host(`${APP_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.adguard.entrypoints: websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.adguard.service: adguard
 | 
					
						
							|  |  |  |       traefik.http.routers.adguard.tls.certresolver: myresolver
 | 
					
						
							| 
									
										
										
										
											2023-06-10 14:46:05 +00:00
										 |  |  |       # Local domain
 | 
					
						
							|  |  |  |       traefik.http.routers.adguard-local-insecure.rule: Host(`adguard.${LOCAL_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.adguard-local-insecure.entrypoints: web
 | 
					
						
							|  |  |  |       traefik.http.routers.adguard-local-insecure.service: adguard
 | 
					
						
							|  |  |  |       traefik.http.routers.adguard-local-insecure.middlewares: adguard-web-redirect
 | 
					
						
							|  |  |  |       # Local domain secure
 | 
					
						
							|  |  |  |       traefik.http.routers.adguard-local.rule: Host(`adguard.${LOCAL_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.adguard-local.entrypoints: websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.adguard-local.service: adguard
 | 
					
						
							|  |  |  |       traefik.http.routers.adguard-local.tls: true
 |