2023-02-13 07:40:02 +00:00
|
|
|
== Start Keycloak
|
2023-02-09 09:29:41 +00:00
|
|
|
|
|
|
|
From a terminal start Keycloak with the following command:
|
|
|
|
|
|
|
|
[source,bash,subs="attributes+"]
|
|
|
|
----
|
|
|
|
{containerCommand} run -p 8080:8080 -e KEYCLOAK_ADMIN=admin -e KEYCLOAK_ADMIN_PASSWORD=admin quay.io/keycloak/keycloak:{version} start-dev
|
|
|
|
----
|
|
|
|
|
|
|
|
This will start Keycloak exposed on the local port 8080. It will also create an initial admin user with username `admin`
|
|
|
|
and password `admin`.
|