You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Dmitriy Sim 7c33c6ac1a update readme 3 years ago
..
README.md update readme 3 years ago
docker-keycloak.sh first commit 3 years ago

README.md

Keycloak docker starter

Follow instructions from main README file

Startup

To start docker running keycloak

bash docker-keycloak.sh

Go to http://localhost:8080 and login via admin:admin.

Create a new realm demorealm.

Create a new client with client-id=react-app, leave everything else untouched (openid-connect).

Create a new user and set his credentials.


Keycloak theming

Download Alfresco Theme

Follow instructions inside Alfresco theme repository


Alternatively, use the instruction below

Get running container id by

docker ps

Then connect with bash into the container

docker exec -it containderId bin/bash

Create appropriate theme folder and exit

mkdir /opt/jboss/keycloak/themes/alfresco
exit

Copy theme folder into docker container

docker cp theme containerId:/opt/jboss/keycloak/themes/alfresco

Restart container if the theme is not visible inside administrator console

docker restart containerId