2023-11-08 14:09:04 +00:00
|
|
|
== Start {project_name}
|
2023-02-09 09:29:41 +00:00
|
|
|
|
2023-11-08 14:09:04 +00:00
|
|
|
From a terminal, enter the following command to start {project_name}:
|
2023-02-09 09:29:41 +00:00
|
|
|
|
|
|
|
[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
|
|
|
|
----
|
|
|
|
|
2023-11-08 14:09:04 +00:00
|
|
|
This command starts {project_name} exposed on the local port 8080 and creates an initial admin user with the username `admin`
|
2023-02-20 12:58:57 +00:00
|
|
|
and password `admin`.
|