pilot pangea: bugfix wrong var OIDC
be more explicit on docker entrypoint
This commit is contained in:
parent
04ce5ee89c
commit
6bd9e22bfc
|
@ -23,7 +23,7 @@ services:
|
||||||
- EMAIL_BACKEND=${IDHUB_EMAIL_BACKEND}
|
- EMAIL_BACKEND=${IDHUB_EMAIL_BACKEND}
|
||||||
- SUPPORTED_CREDENTIALS=['MembershipCard']
|
- SUPPORTED_CREDENTIALS=['MembershipCard']
|
||||||
- SYNC_ORG_DEV=${IDHUB_SYNC_ORG_DEV}
|
- SYNC_ORG_DEV=${IDHUB_SYNC_ORG_DEV}
|
||||||
- OIDC_OIRGS=examples/organizations__pilot_ereuse.csv
|
- OIDC_ORGS=examples/organizations__pilot_ereuse.csv
|
||||||
- OIDC_REDIRECT=true
|
- OIDC_REDIRECT=true
|
||||||
ports:
|
ports:
|
||||||
- 9101:8000
|
- 9101:8000
|
||||||
|
@ -53,7 +53,7 @@ services:
|
||||||
- EMAIL_BACKEND=${IDHUB_EMAIL_BACKEND}
|
- EMAIL_BACKEND=${IDHUB_EMAIL_BACKEND}
|
||||||
- SUPPORTED_CREDENTIALS=['EOperatorClaim']
|
- SUPPORTED_CREDENTIALS=['EOperatorClaim']
|
||||||
- SYNC_ORG_DEV=${IDHUB_SYNC_ORG_DEV}
|
- SYNC_ORG_DEV=${IDHUB_SYNC_ORG_DEV}
|
||||||
- OIDC_OIRGS=examples/organizations__pilot_ereuse.csv
|
- OIDC_ORGS=examples/organizations__pilot_ereuse.csv
|
||||||
- OIDC_REDIRECT=true
|
- OIDC_REDIRECT=true
|
||||||
ports:
|
ports:
|
||||||
- 9102:8000
|
- 9102:8000
|
||||||
|
|
|
@ -50,6 +50,8 @@ deployment_strategy() {
|
||||||
|
|
||||||
if [ "${OIDC_ORGS:-}" ]; then
|
if [ "${OIDC_ORGS:-}" ]; then
|
||||||
config_oidc4vp
|
config_oidc4vp
|
||||||
|
else
|
||||||
|
echo "Note: skipping oidc4vp config"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue