af0bdd71d3
CIAM-5057
11 lines
409 B
Text
11 lines
409 B
Text
== Start Keycloak
|
|
|
|
From a terminal, enter the following command to start Keycloak:
|
|
|
|
[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 command starts Keycloak exposed on the local port 8080 and creates an initial admin user with the username `admin`
|
|
and password `admin`.
|