forked from p-zombie/freqtrade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
42 lines (41 loc) · 893 Bytes
/
docker-compose.yml
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
35
36
37
38
39
40
41
42
---
version: '3'
services:
freqtrade:
build:
context: .
dockerfile: "./Dockerfile"
env_file:
- .env
container_name: freqtrade
volumes:
- "./user_data:/freqtrade/user_data"
ports:
- "127.0.0.1:8080:8080"
tty: true
lab:
build:
context: .
dockerfile: "./Dockerfile"
env_file:
- .env
restart: unless-stopped
container_name: lab
ports:
- "127.0.0.1:8888:8888"
volumes:
- "./user_data:/freqtrade/user_data"
command: >
jupyter lab --port=8888 --ip 0.0.0.0 --allow-root
tensorboard:
container_name: tensorboard
build:
context: .
dockerfile: "./Dockerfile"
env_file:
- .env
volumes:
- "./user_data:/freqtrade/user_data"
ports:
- 6006:6006
command: tensorboard --host 0.0.0.0 --logdir=/freqtrade/user_data/tensorboard