| 
									
										
										
										
											2023-03-20 14:52:43 +00:00
										 |  |  | version: "3"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | services:
 | 
					
						
							|  |  |  |   grafana:
 | 
					
						
							|  |  |  |     container_name: grafana
 | 
					
						
							| 
									
										
										
										
											2024-04-11 16:13:33 +00:00
										 |  |  |     image: grafana/grafana-oss:10.4.2
 | 
					
						
							| 
									
										
										
										
											2023-03-20 14:52:43 +00:00
										 |  |  |     ports:
 | 
					
						
							|  |  |  |       - ${APP_PORT}:3000
 | 
					
						
							|  |  |  |     volumes:
 | 
					
						
							|  |  |  |       - ${APP_DATA_DIR}/data/grafana:/var/lib/grafana
 | 
					
						
							|  |  |  |     networks:
 | 
					
						
							|  |  |  |       - tipi_main_network
 | 
					
						
							|  |  |  |     labels:
 | 
					
						
							| 
									
										
										
										
											2023-06-10 14:46:05 +00:00
										 |  |  |       # Main
 | 
					
						
							|  |  |  |       traefik.enable: true
 | 
					
						
							|  |  |  |       traefik.http.middlewares.grafana-web-redirect.redirectscheme.scheme: https
 | 
					
						
							|  |  |  |       traefik.http.services.grafana.loadbalancer.server.port: 3000
 | 
					
						
							|  |  |  |       # Web
 | 
					
						
							|  |  |  |       traefik.http.routers.grafana-insecure.rule: Host(`${APP_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.grafana-insecure.entrypoints: web
 | 
					
						
							|  |  |  |       traefik.http.routers.grafana-insecure.service: grafana
 | 
					
						
							|  |  |  |       traefik.http.routers.grafana-insecure.middlewares: grafana-web-redirect
 | 
					
						
							|  |  |  |       # Websecure
 | 
					
						
							| 
									
										
										
										
											2023-03-20 14:52:43 +00:00
										 |  |  |       traefik.http.routers.grafana.rule: Host(`${APP_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.grafana.entrypoints: websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.grafana.service: grafana
 | 
					
						
							|  |  |  |       traefik.http.routers.grafana.tls.certresolver: myresolver
 | 
					
						
							| 
									
										
										
										
											2023-06-10 14:46:05 +00:00
										 |  |  |       # Local domain
 | 
					
						
							|  |  |  |       traefik.http.routers.grafana-local-insecure.rule: Host(`grafana.${LOCAL_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.grafana-local-insecure.entrypoints: web
 | 
					
						
							|  |  |  |       traefik.http.routers.grafana-local-insecure.service: grafana
 | 
					
						
							|  |  |  |       traefik.http.routers.grafana-local-insecure.middlewares: grafana-web-redirect
 | 
					
						
							|  |  |  |       # Local domain secure
 | 
					
						
							|  |  |  |       traefik.http.routers.grafana-local.rule: Host(`grafana.${LOCAL_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.grafana-local.entrypoints: websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.grafana-local.service: grafana
 | 
					
						
							|  |  |  |       traefik.http.routers.grafana-local.tls: true
 |