-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yaml
27 lines (27 loc) · 981 Bytes
/
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
services:
identity-foundation-app:
extends:
file: identity-foundation-app/compose.yaml
service: identity-foundation-app
identity-foundation-account:
extends:
file: identity-foundation-account/compose.yaml
service: identity-foundation-account
environment:
USERNAME: john
PASSWORD: JR6BshsDvAPDCv
identity-foundation-oathkeeper:
image: oryd/oathkeeper@sha256:44d22a42c24ba77cea84ea1523616781d4461284b2f2f8adf6a5602a0aecd3fc
environment:
- LOG_LEVEL=debug
- LOG_LEAK_SENSITIVE_VALUES=true
restart: on-failure
volumes:
- ./identity-foundation-oathkeeper/access-rules.json:/etc/ory/oathkeeper/access-rules.json
- ./identity-foundation-oathkeeper/.oathkeeper.json:/home/ory/.oathkeeper.json
- ./identity-foundation-infrastructure/id_token.jwks.json:/etc/ory/oathkeeper/id_token.jwks.json
depends_on:
- identity-foundation-account
ports:
- 4455:4455
- 4456:4456