forked from thenewboston-blockchain/Node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
43 lines (37 loc) · 882 Bytes
/
docker-compose.dev.yml
File metadata and controls
43 lines (37 loc) · 882 Bytes
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
version: '3.9'
services:
node-mongo:
restart: 'no'
image: node-mongo:current
build:
context: .
target: node-mongo
environment:
MONGO_INITDB_ROOT_PASSWORD: root
mongo-express:
restart: 'no'
environment:
ME_CONFIG_MONGODB_URL: mongodb://root:root@node-mongo:27017/
celery-broker:
restart: 'no'
celery:
image: node:current
build:
context: .
target: node
environment:
TNB_DATABASES: '{"default":{"CLIENT":{"host":"node-mongo","password":"root"}}}'
node:
image: node:current
build:
context: .
target: node
environment:
TNB_DATABASES: '{"default":{"CLIENT":{"host":"node-mongo","password":"root"}}}'
ports:
- 127.0.0.1:8000:8555
node-reverse-proxy:
image: node-reverse-proxy:current
build:
context: .
target: node-reverse-proxy