-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
45 lines (45 loc) · 973 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
version: '3.3'
services:
mongo:
image: mongo
restart: always
command: mongod
container_name: mongodb
ports:
- 8090:27017
volumes:
- /data/db:/data/db
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
mongo-express:
image: mongo-express
restart: always
ports:
- 8091:8091
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: example
VCAP_APP_HOST: 0.0.0.0
VCAP_APP_PORT: 8091
user-manager:
image: shishirinsane/sinthoma/user-manager
ports:
- 8092:8092
depends_on:
- mongo
restart: always
core-auth-service:
image: shishirinsane/sinthoma/core-auth-service
ports:
- 8095:8095
depends_on:
- mongo
restart: always
# dashboard-bff:
# image: shishirinsane/sinthoma/dashboard-bff
# ports:
# - 8094:8094
# depends_on:
# - user-manager
# restart: always