-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
72 lines (65 loc) · 1.27 KB
/
Copy pathdocker-compose.yml
File metadata and controls
72 lines (65 loc) · 1.27 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
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
version: '3.1'
services:
mongo:
image: mongo
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: root
ports:
- 27017:27017
networks:
- iotexNetwork
mongo-express:
image: mongo-express
restart: always
ports:
- 8081:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: root
ME_CONFIG_MONGODB_URL: mongodb://root:root@mongo:27017/
depends_on:
- mongo
networks:
- iotexNetwork
redis:
image: redis:alpine
restart: always
ports:
- 6379:6379
networks:
- iotexNetwork
bull-monitor:
image: ejhayes/nodejs-bull-monitor:latest
ports:
- 3002:3000
environment:
REDIS_HOST: redis
REDIS_PORT: 6379
BULL_WATCH_QUEUE_PREFIXES: bull
PORT: 3000
UI: bull-master
depends_on:
- redis
networks:
- iotexNetwork
iotex-queue:
image: iotex-queue:latest
ports:
- 3000:3000
depends_on:
- mongo
networks:
- iotexNetwork
iotex-webapp:
image: iotex-webapp:latest
ports:
- 8000:80
depends_on:
- mongo
networks:
- iotexNetwork
networks:
iotexNetwork:
driver: bridge