Commit 4e3bf086 authored by William Tucker's avatar William Tucker
Browse files

Added script to install a custom Keycloak theme jar from a URL

parent cd17bbe6
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