-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yaml
60 lines (59 loc) · 1.33 KB
/
docker-compose.yaml
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
version: '3.7'
networks:
ink-explorer-network:
name: ink-explorer-network
default:
driver: ink-explorer-network
services:
backend:
#image: blockcoders/ink-substrate-explorer-api:latest
restart: on-failure
depends_on:
- mongo
build:
context: .
# dockerfile: dev.Dockerfile
dockerfile: Dockerfile
ports:
- 8080:8080
volumes:
- .:/usr/src/app
- /usr/src/app/node_modules
- /usr/src/app/dist
env_file:
- .env
networks:
ink-explorer-network:
aliases:
- "backend"
mongo:
image: mongo:latest
environment:
- MONGO_INITDB_ROOT_USERNAME=root
- MONGO_INITDB_ROOT_PASSWORD=root
- MONGO_INITDB_DATABASE=ink
- MONGO_INITDB_USER=mongodb
- MONGO_INITDB_PWD=mongodb
ports:
- '27017:27017'
volumes:
- ./initdb.d/:/docker-entrypoint-initdb.d/
networks:
ink-explorer-network:
aliases:
- "mongo"
mongo-express:
image: mongo-express
restart: always
depends_on:
- mongo
ports:
- 8081:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: example
ME_CONFIG_MONGODB_URL: mongodb://root:root@mongo:27017
networks:
ink-explorer-network:
aliases:
- "mongo-express"