Skip to content

Commit

Permalink
feat: enable missing services in docker monolith (#8915)
Browse files Browse the repository at this point in the history
Signed-off-by: moabu <47318409+moabu@users.noreply.github.com>
  • Loading branch information
moabu committed Jul 9, 2024
1 parent b8f44db commit 4de98cc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docker-jans-monolith/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@ ENV CN_HOSTNAME="demoexample.jans.io" \
CN_INSTALL_CONFIG_API="true" \
CN_INSTALL_SCIM="true" \
CN_INSTALL_FIDO2="true" \
CN_INSTALL_CASA="true" \
CN_INSTALL_KC_LINK="true" \
CN_INSTALL_LINK="true" \
CN_INSTALL_LOCK="true" \
CN_INSTALL_SAML="true" \
CN_INSTALL_OPA="true" \
RDBMS_DATABASE="jans" \
RDBMS_USER="jans" \
RDBMS_PASSWORD="" \
Expand Down
6 changes: 6 additions & 0 deletions docker-jans-monolith/scripts/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ install_jans() {
echo "install_config_api=""$([[ ${CN_INSTALL_CONFIG_API} == true ]] && echo True || echo False)" | tee -a setup.properties > /dev/null
echo "install_scim_server=""$([[ ${CN_INSTALL_SCIM} == true ]] && echo True || echo False)" | tee -a setup.properties > /dev/null
echo "installFido2=""$([[ ${CN_INSTALL_FIDO2} == true ]] && echo True || echo False)" | tee -a setup.properties > /dev/null
echo "install_casa=""$([[ ${CN_INSTALL_CASA} == true ]] && echo True || echo False)" | tee -a setup.properties > /dev/null
echo "install_jans_keycloak_link=""$([[ ${CN_INSTALL_KC_LINK} == true ]] && echo True || echo False)" | tee -a setup.properties > /dev/null
echo "install_jans_link=""$([[ ${CN_INSTALL_LINK} == true ]] && echo True || echo False)" | tee -a setup.properties > /dev/null
echo "install_jans_lock=""$([[ ${CN_INSTALL_LOCK} == true ]] && echo True || echo False)" | tee -a setup.properties > /dev/null
echo "install_jans_saml=""$([[ ${CN_INSTALL_SAML} == true ]] && echo True || echo False)" | tee -a setup.properties > /dev/null
echo "install_opa=""$([[ ${CN_INSTALL_OPA} == true ]] && echo True || echo False)" | tee -a setup.properties > /dev/null
echo "test_client_id=${TEST_CLIENT_ID}"| tee -a setup.properties > /dev/null
echo "test_client_pw=${TEST_CLIENT_SECRET}" | tee -a setup.properties > /dev/null1
echo "test_client_trusted=""$([[ ${TEST_CLIENT_TRUSTED} == true ]] && echo True || echo True)" | tee -a setup.properties > /dev/null
Expand Down

0 comments on commit 4de98cc

Please sign in to comment.