forked from ethereumclassic/explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
46 lines (46 loc) · 864 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
42
43
44
45
46
version: '3'
services:
app:
build: .
command: ./app.js
restart: always
environment:
MONGO_URI: 'mongodb://db/explorerDB'
ports:
- '3000:3000'
depends_on:
- db
sync:
build: .
command: ./tools/sync.js
restart: always
environment:
MONGO_URI: 'mongodb://db/explorerDB'
depends_on:
- db
stats:
build: .
command: ./tools/stats.js
restart: always
environment:
MONGO_URI: 'mongodb://db/explorerDB'
depends_on:
- db
price:
build: .
command: ./tools/price.js
restart: always
environment:
MONGO_URI: 'mongodb://db/explorerDB'
depends_on:
- db
richlist:
build: .
command: ./tools/richlist.js
restart: "no"
environment:
MONGO_URI: 'mongodb://db/explorerDB'
depends_on:
- db
db:
image: mongo