| 
									
										
										
										
											2023-09-11 10:49:44 +00:00
										 |  |  | version: "3"
 | 
					
						
							|  |  |  | services:
 | 
					
						
							|  |  |  |   baikal:
 | 
					
						
							|  |  |  |     container_name: baikal
 | 
					
						
							| 
									
										
										
										
											2024-04-20 16:50:31 +00:00
										 |  |  |     image: ckulka/baikal:0.9.5-nginx
 | 
					
						
							| 
									
										
										
										
											2023-09-11 10:49:44 +00:00
										 |  |  |     restart: unless-stopped
 | 
					
						
							|  |  |  |     ports:
 | 
					
						
							|  |  |  |       - ${APP_PORT}:80
 | 
					
						
							|  |  |  |     volumes:
 | 
					
						
							|  |  |  |       - ${APP_DATA_DIR}/config:/var/www/baikal/config
 | 
					
						
							|  |  |  |       - ${APP_DATA_DIR}/specific:/var/www/baikal/Specific
 | 
					
						
							|  |  |  |     networks:
 | 
					
						
							|  |  |  |       - tipi_main_network
 | 
					
						
							|  |  |  |     labels:
 | 
					
						
							|  |  |  |       # Main
 | 
					
						
							|  |  |  |       traefik.enable: true
 | 
					
						
							|  |  |  |       traefik.http.middlewares.baikal-web-redirect.redirectscheme.scheme: https
 | 
					
						
							|  |  |  |       traefik.http.services.baikal.loadbalancer.server.port: 80
 | 
					
						
							|  |  |  |       # Web
 | 
					
						
							|  |  |  |       traefik.http.routers.baikal-insecure.rule: Host(`${APP_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.baikal-insecure.entrypoints: web
 | 
					
						
							|  |  |  |       traefik.http.routers.baikal-insecure.service: baikal
 | 
					
						
							|  |  |  |       traefik.http.routers.baikal-insecure.middlewares: baikal-web-redirect
 | 
					
						
							|  |  |  |       # Websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.baikal.rule: Host(`${APP_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.baikal.entrypoints: websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.baikal.service: baikal
 | 
					
						
							|  |  |  |       traefik.http.routers.baikal.tls.certresolver: myresolver
 | 
					
						
							|  |  |  |       # Local domain
 | 
					
						
							|  |  |  |       traefik.http.routers.baikal-local-insecure.rule: Host(`baikal.${LOCAL_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.baikal-local-insecure.entrypoints: web
 | 
					
						
							|  |  |  |       traefik.http.routers.baikal-local-insecure.service: baikal
 | 
					
						
							|  |  |  |       traefik.http.routers.baikal-local-insecure.middlewares: baikal-web-redirect
 | 
					
						
							|  |  |  |       # Local domain secure
 | 
					
						
							|  |  |  |       traefik.http.routers.baikal-local.rule: Host(`baikal.${LOCAL_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.baikal-local.entrypoints: websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.baikal-local.service: baikal
 | 
					
						
							|  |  |  |       traefik.http.routers.baikal-local.tls: true
 |