-
Notifications
You must be signed in to change notification settings - Fork 32
/
docker-compose-tasks.yml
39 lines (35 loc) · 1 KB
/
docker-compose-tasks.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
services:
data-generation-runner:
image: hummingbot/quants-lab:latest
volumes:
- .:/quants-lab
env_file:
- .env
command: conda run --no-capture-output -n quants-lab python3 tasks/trades_downloader_runner.py
network_mode: host
backtesting-runner:
image: hummingbot/quants-lab:latest
volumes:
- .:/quants-lab
deploy:
replicas: 10
env_file:
- .env
command: conda run --no-capture-output -n quants-lab python3 tasks/backtesting_runner.py
network_mode: host
candles-downloader-runner:
image: hummingbot/quants-lab:latest
volumes:
- .:/quants-lab
env_file:
- .env
command: conda run --no-capture-output -n quants-lab python3 tasks/candles_downloader_runner.py
network_mode: host
screeners-report-runner:
image: hummingbot/quants-lab:latest
volumes:
- .:/quants-lab
env_file:
- .env
command: conda run --no-capture-output -n quants-lab python3 tasks/report_runner.py
network_mode: host