forked from chrisleekr/binance-trading-bot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
95 lines (88 loc) · 2.01 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
version: '3.7'
services:
binance-bot:
container_name: binance-bot
build:
context: ./
target: dev-stage
# target: production-stage
networks:
- internal
volumes:
- ./config:/srv/config
- ./app:/srv/app
- ./public:/srv/public
- ./migrations:/srv/migrations
- ./scripts:/srv/scripts
env_file:
- .env
restart: unless-stopped
environment:
- BINANCE_MODE=test
# - BINANCE_MODE=live
- BINANCE_REDIS_HOST=binance-redis
- BINANCE_REDIS_PORT=6379
- BINANCE_REDIS_PASSWORD=secretp422
ports:
- 8080:80
logging:
driver: 'json-file'
options:
max-size: '1G'
tradingview:
container_name: tradingview
build:
context: ./tradingview
networks:
- internal
restart: unless-stopped
environment:
- PYTHONUNBUFFERED=1
# https://docs.python.org/3/howto/logging.html#logging-levels
- TRADINGVIEW_LOG_LEVEL=INFO
ports:
- 8082:8080
logging:
driver: 'json-file'
options:
max-size: '50m'
binance-redis:
container_name: binance-redis
image: redis:6.2.4
sysctls:
net.core.somaxconn: 1024
restart: unless-stopped
networks:
- internal
ports:
- 6379:6379
volumes:
- redis_data:/data
- ./redis/redis.conf:/usr/local/etc/redis/redis.conf
command: redis-server /usr/local/etc/redis/redis.conf --requirepass secretp422
binance-mongo:
container_name: binance-mongo
image: mongo:3.2.20-jessie
restart: unless-stopped
networks:
- internal
volumes:
- mongo_data:/data/db
binance-mongo-express:
container_name: binance-mongo-express
image: mongo-express:0.54
restart: unless-stopped
networks:
- internal
ports:
- 8081:8081
environment:
ME_CONFIG_MONGODB_SERVER: binance-mongo
networks:
internal:
driver: bridge
# driver_opts:
# com.docker.network.driver.mtu: 1442
volumes:
redis_data:
mongo_data: