Dmitriy Sim 7c33c6ac1a | 3 years ago | |
---|---|---|
.. | ||
README.md | 3 years ago | |
docker-keycloak.sh | 3 years ago |
Follow instructions from main README file
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.
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