| 
									
										
										
										
											2023-12-07 07:14:02 +00:00
										 |  |  | version: '3.9'
 | 
					
						
							| 
									
										
										
										
											2023-11-21 13:39:38 +00:00
										 |  |  | services:
 | 
					
						
							|  |  |  |   octobot:
 | 
					
						
							|  |  |  |     container_name: octobot
 | 
					
						
							| 
									
										
										
										
											2024-01-19 01:01:51 +00:00
										 |  |  |     image: drakkarsoftware/octobot:1.0.7
 | 
					
						
							| 
									
										
										
										
											2023-11-21 13:39:38 +00:00
										 |  |  |     environment:
 | 
					
						
							|  |  |  |       - TZ=${TZ}
 | 
					
						
							|  |  |  |     volumes:
 | 
					
						
							| 
									
										
										
										
											2023-12-07 07:14:02 +00:00
										 |  |  |       - ${APP_DATA_DIR}/data/user:/octobot/user
 | 
					
						
							|  |  |  |       - ${APP_DATA_DIR}/data/tentacles:/octobot/tentacles
 | 
					
						
							|  |  |  |       - ${APP_DATA_DIR}/data/logs:/octobot/logs
 | 
					
						
							| 
									
										
										
										
											2023-11-21 13:39:38 +00:00
										 |  |  |     ports:
 | 
					
						
							|  |  |  |       - ${APP_PORT}:5001
 | 
					
						
							|  |  |  |     restart: unless-stopped
 | 
					
						
							|  |  |  |     networks:
 | 
					
						
							|  |  |  |       - tipi_main_network
 | 
					
						
							|  |  |  |     dns:
 | 
					
						
							|  |  |  |       - ${DNS_IP}
 | 
					
						
							|  |  |  |     labels:
 | 
					
						
							|  |  |  |       # Main
 | 
					
						
							|  |  |  |       traefik.enable: true
 | 
					
						
							|  |  |  |       traefik.http.middlewares.octobot-web-redirect.redirectscheme.scheme: https
 | 
					
						
							|  |  |  |       traefik.http.services.octobot.loadbalancer.server.port: 5001
 | 
					
						
							|  |  |  |       # Web
 | 
					
						
							|  |  |  |       traefik.http.routers.octobot-insecure.rule: Host(`${APP_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.octobot-insecure.entrypoints: web
 | 
					
						
							|  |  |  |       traefik.http.routers.octobot-insecure.service: octobot
 | 
					
						
							|  |  |  |       traefik.http.routers.octobot-insecure.middlewares: octobot-web-redirect
 | 
					
						
							|  |  |  |       # Websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.octobot.rule: Host(`${APP_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.octobot.entrypoints: websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.octobot.service: octobot
 | 
					
						
							|  |  |  |       traefik.http.routers.octobot.tls.certresolver: myresolver
 | 
					
						
							|  |  |  |       # Local domain
 | 
					
						
							|  |  |  |       traefik.http.routers.octobot-local-insecure.rule: Host(`octobot.${LOCAL_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.octobot-local-insecure.entrypoints: web
 | 
					
						
							|  |  |  |       traefik.http.routers.octobot-local-insecure.service: octobot
 | 
					
						
							|  |  |  |       traefik.http.routers.octobot-local-insecure.middlewares: octobot-web-redirect
 | 
					
						
							|  |  |  |       # Local domain secure
 | 
					
						
							|  |  |  |       traefik.http.routers.octobot-local.rule: Host(`octobot.${LOCAL_DOMAIN}`)
 | 
					
						
							|  |  |  |       traefik.http.routers.octobot-local.entrypoints: websecure
 | 
					
						
							|  |  |  |       traefik.http.routers.octobot-local.service: octobot
 | 
					
						
							|  |  |  |       traefik.http.routers.octobot-local.tls: true
 |