The keycloak demo distribution contains an additional
./add-user-keycloak.sh script. So I have solved my problem after adding
2 new lines to the dockerfile
RUN /opt/jboss/keycloak-demo/keycloak/bin/add-user.sh -u admin -p
xxxxxxx --silent
RUN /opt/jboss/keycloak-demo/keycloak/bin/add-user-keycloak.sh -u admin
-p xxxxxxx
On 02/03/16 15:59, Charles Moulliard wrote:
Hi,
I'm testing a new Docker image to run the Keycloak Demo 1.9.0.Final.
The docker container has been started as such
docker run -dti -p 8080:8080 -p 9990:9990 --name keycloak-examples
cmoulliard/keycloak-examples
I can access from the host (= MacOs machine) the Widlfly console at
this address :
http://127.0.0.1:9990/console (with the the user/pwd
added using the script add-user.sh added within the Dockerfile) like
also the Keycloak Admin console :
http://localhost:8080/auth/
Unfortunately, I can't encode the admin user and its password as we
can do when we run on a standalone machine the keycloak demo server -
https://www.dropbox.com/s/wrx6px48eoaoeeh/Screenshot%202016-03-02%2015.52....
No popup screen allows me to add a user + password
Is there a workaround ?
Regards
Charles