-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
45 lines (39 loc) · 913 Bytes
/
docker-compose.yaml
File metadata and controls
45 lines (39 loc) · 913 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
44
45
version: '3.1'
services:
auth_portal_api:
container_name: auth_portal_api
build: .
restart: always
ports:
- '127.0.0.1:8088:8088'
environment:
- CONNECTION_STR=mongodb://root:admin@mongo:27017/auth-portal
depends_on:
- mongo
mongo:
image: mongo
restart: always
ports:
- '127.0.0.1:27017:27017'
volumes:
- db:/data/db
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: admin
MONGO_INITDB_DATABASE: auth-portal
mongo-express:
image: mongo-express
restart: always
ports:
- 127.0.0.1:8081:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: admin
ME_CONFIG_MONGODB_URL: mongodb://root:admin@mongo:27017
ME_CONFIG_BASICAUTH: 0
volumes:
db:
networks:
default:
name: nginx-proxy-net
external: true