-
Notifications
You must be signed in to change notification settings - Fork 11
/
docker-compose.yml
41 lines (39 loc) · 925 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
version: "3.9"
services:
freqtrade_combinedbinhandcluc:
image: freqtradeorg/freqtrade:latest
volumes:
- "./freqtrade:/freqtrade_data"
- "./freqtrade/strategies:/freqtrade/user_data/strategies"
command: >
trade
--config /freqtrade_data/example_binance.json
ports:
- "3000:3000"
grafana:
image: grafana/grafana:latest
volumes:
- grafana:/var/lib/grafana
ports:
- "8080:3000"
prometheus:
image: prom/prometheus:latest
volumes:
- ./prometheus/prometheus.yml:/etc/prometheus/prometheus.yml
ports:
- "9090:9090"
freqtrade_exporter:
build: ./collector
environment:
- API_USER=freqtrader
- API_PASSWORD=SuperSecretPassword
- DEFAULT_BOT=freqtrade_combinedbinhandcluc:3000
- HTTP_SCHEME=http
ports:
- "3001:3000"
volumes:
grafana:
networks:
default:
external:
name: metrics