[go: up one dir, main page]

Menu

[c8a7db]: / docker-compose.yml  Maximize  Restore  History

Download this file

35 lines (32 with data), 1.1 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
version: "3"
services:
octobot:
image: drakkarsoftware/octobot:stable
labels:
- traefik.enable=true
- traefik.http.routers.octobot.rule=Host("${HOST:-octobot.localhost}")
- traefik.http.services.octobot.loadbalancer.server.port=${PORT:-5001}
- traefik.http.routers.octobot.tls=true
volumes:
- ./logs:/octobot/logs
- ./backtesting:/octobot/backtesting
- ./tentacles:/octobot/tentacles
- ./user:/octobot/user
expose:
- ${PORT:-5001}
restart: always
traefik:
image: traefik:v2.5
command:
- "--providers.docker=true"
- "--providers.docker.exposedbydefault=false"
- "--entrypoints.web.address=:80"
- "--entrypoints.web.http.redirections.entryPoint.to=websecure"
- "--entrypoints.web.http.redirections.entryPoint.scheme=https"
- "--entrypoints.web.http.redirections.entrypoint.permanent=true"
- "--entrypoints.websecure.address=:443"
ports:
- "80:80"
- "443:443"
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro