How to create a customization container image for Keycloak
This page describes how to create a container image with custom themes and providers to use along with VSHNKeycloak
service.
-
Open a command line and create two directories.
mkdir themes && mkdir providers
-
Place your themes and providers in respective directories.
-
Create the following docker file.
cat <<EOF >>Dockerfile FROM alpine COPY themes /themes COPY providers /providers EOF
-
Build your Docker image.
docker build -t myuser/keycloak-custom:v1 .
-
Push your image to the registry.