Commit 116046a8 authored by William Tucker's avatar William Tucker
Browse files

Merge branch 'issue/118/keycloak-image' of https://github.com/ESGF/esgf-docker...

Merge branch 'issue/118/keycloak-image' of https://github.com/ESGF/esgf-docker into issue/158/idp-deployments
parents 0d8d7bc2 4e3bf086
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
#!/bin/bash

##
# This script installs a Keycloak theme .jar file from a URL.
##

# Download the theme .jar to the Keycloak themes directory
if [[ -v KEYCLOAK_THEME_JAR_URL ]]; then
    curl $KEYCLOAK_THEME_JAR_URL -L --output /opt/jboss/keycloak/standalone/deployments/custom.jar
fi