Keycloak
11 строк · 427.0 Байт
1== Start {project_name}
2
3From a terminal, enter the following command to start {project_name}:
4
5[source,bash,subs="attributes+"]
6----
7{containerCommand} run -p 8080:8080 -e KEYCLOAK_ADMIN=admin -e KEYCLOAK_ADMIN_PASSWORD=admin quay.io/keycloak/keycloak:{version} start-dev
8----
9
10This command starts {project_name} exposed on the local port 8080 and creates an initial admin user with the username `admin`
11and password `admin`.
12