-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
43 lines (38 loc) · 994 Bytes
/
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
version: '3.6'
services:
oidc-provider-app:
image: registry.gitlab.com/i3-market/code/wp3/t3.1-self-sovereign-identity-and-access-management/node-oidc-provider:release-2.9.5
container_name: oidc-provider-app
restart: unless-stopped
ports:
- 3300:3300
env_file:
- oidc.env
networks:
- oidc-net
- reverse-proxy
volumes:
- ./volumes/misc:/app/misc
depends_on:
- oidc-provider-db
oidc-provider-db:
container_name: oidc-provider-db
image: mongo:6.0.4
restart: unless-stopped
networks:
- oidc-net
env_file:
- oidc.env
ports:
- 27017:27017
volumes:
- oidc-mongo:/data/db
- ./volumes/scripts:/data/scripts:ro
- ./volumes/scripts/mongo-init.js:/docker-entrypoint-initdb.d/mongo-init.js:ro
command: --quiet --setParameter logLevel=0
networks:
oidc-net:
reverse-proxy:
external: true
volumes:
oidc-mongo: