pilots xo9b and setem work on the new idhub way
this is partial work when migrating from using each one a branch vs all in main
This commit is contained in:
parent
0562194d93
commit
b65ff7aca9
|
@ -89,6 +89,10 @@ IDHUB_USER='admin'
|
|||
IDHUB_PASSWD='admin'
|
||||
IDHUB_EMAIL='admin@example.org'
|
||||
|
||||
# this option needs to be set to 'n' to be able to make work idhub in docker
|
||||
# by default it is set to 'y' to facilitate idhub dev when outside docker
|
||||
IDHUB_SYNC_ORG_DEV='n'
|
||||
|
||||
# AUTHENTIK aka goauthentik
|
||||
####
|
||||
|
||||
|
|
|
@ -25,6 +25,8 @@ services:
|
|||
- RESPONSE_URI=https://idhub1-setem.demo.pangea.org/oidc4vp/
|
||||
- ALLOW_CODE_URI=https://idhub1-setem.demo.pangea.org/oidc4vp/allow_code
|
||||
- SUPPORTED_CREDENTIALS=['MembershipCard']
|
||||
- SYNC_ORG_DEV=${IDHUB_SYNC_ORG_DEV}
|
||||
- ORG_FILE=examples/organizations__pilot_setem.csv
|
||||
ports:
|
||||
- 9011:9001
|
||||
volumes:
|
||||
|
@ -55,6 +57,8 @@ services:
|
|||
- RESPONSE_URI=https://idhub2-setem.demo.pangea.org/oidc4vp/
|
||||
- ALLOW_CODE_URI=https://idhub2-setem.demo.pangea.org/oidc4vp/allow_code
|
||||
- SUPPORTED_CREDENTIALS=['MembershipCard']
|
||||
- SYNC_ORG_DEV=${IDHUB_SYNC_ORG_DEV}
|
||||
- ORG_FILE=examples/organizations__pilot_setem.csv
|
||||
ports:
|
||||
- 9012:9002
|
||||
volumes:
|
||||
|
|
|
@ -25,6 +25,8 @@ services:
|
|||
- RESPONSE_URI=https://idhub1-xo9b.demo.pangea.org/oidc4vp/
|
||||
- ALLOW_CODE_URI=https://idhub1-xo9b.demo.pangea.org/oidc4vp/allow_code
|
||||
- SUPPORTED_CREDENTIALS=['MembershipCard']
|
||||
- SYNC_ORG_DEV=${IDHUB_SYNC_ORG_DEV}
|
||||
- ORG_FILE=examples/organizations__pilot_xo9b.csv
|
||||
ports:
|
||||
- 9001:9001
|
||||
volumes:
|
||||
|
@ -55,6 +57,8 @@ services:
|
|||
- RESPONSE_URI=https://idhub2-xo9b.demo.pangea.org/oidc4vp/
|
||||
- ALLOW_CODE_URI=https://idhub2-xo9b.demo.pangea.org/oidc4vp/allow_code
|
||||
- SUPPORTED_CREDENTIALS=['MembershipCard']
|
||||
- SYNC_ORG_DEV=${IDHUB_SYNC_ORG_DEV}
|
||||
- ORG_FILE=examples/organizations__pilot_xo9b.csv
|
||||
ports:
|
||||
- 9002:9002
|
||||
volumes:
|
||||
|
|
Reference in New Issue