11 lines
404 B
Text
11 lines
404 B
Text
|
## Start Keycloak
|
||
|
|
||
|
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`.
|