-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
43 lines (39 loc) · 878 Bytes
/
docker-compose.yaml
File metadata and controls
43 lines (39 loc) · 878 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.8"
services:
mongodb:
image: mongo
container_name: mongodb
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: toor
ports:
- "27017:27017"
mongo-express:
image: mongo-express
container_name: mongo-express
restart: always
ports:
- "8081:8081"
environment:
- ME_CONFIG_MONGODB_ADMINUSERNAME=root
- ME_CONFIG_MONGODB_ADMINPASSWORD=toor
- ME_CONFIG_MONGODB_SERVER=mongodb
depends_on:
- mongodb
user-api:
container_name: user-api
ports:
- "8080:8080"
environment:
SPRING.DATA.MONGODB.HOST: mongodb:27017
DATABASE_USERNAME: root
DATABASE_PASSWORD: toor
DATABASE_PORT: 27017
build:
dockerfile: Dockerfile
context: ./
depends_on:
- mongodb
networks:
default:
name: mongodb_network