[U] .
parent
60807aad6c
commit
a490a20f0f
|
@ -8,16 +8,15 @@
|
||||||
|
|
||||||
Keycloak is an Open Source Identity and Access Management solution for modern Applications and Services.
|
Keycloak is an Open Source Identity and Access Management solution for modern Applications and Services.
|
||||||
|
|
||||||
[The quickstarts](https://github.com/keycloak/keycloak-quickstarts) demonstrate securing applications with Keycloak.
|
|
||||||
They provide small, specific, working examples that can be used as a reference for your own project.
|
|
||||||
|
|
||||||
## Instalación desde Docker
|
## Instalación desde Docker
|
||||||
|
|
||||||
* `docker pull quay.io/keycloak/keycloak`
|
> Enlaces de interés:
|
||||||
|
> * https://www.keycloak.org/guides#getting-started
|
||||||
> Normalmente se hace:
|
|
||||||
> * `docker search keycloak` para localizar contenedores de Keycloak.
|
|
||||||
> * ¿Cuál escoger?... _jboss/keycloak, bitname/keycloak_
|
|
||||||
> Pero nosotros queremos descargarlo desde https://quay.io/repository/keycloak/keycloak
|
|
||||||
|
|
||||||
|
|
||||||
|
```
|
||||||
|
docker
|
||||||
|
├── 01-pull-image.sh # Descargar la imagen
|
||||||
|
├── 02-docker-list.sh # Comprobar
|
||||||
|
├── 03-start-container.sh # Iniciar contenedor
|
||||||
|
└── 10-rm-image.sh # Borrar la imagen
|
||||||
|
```
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
docker run -p 8080:8080 -e KEYCLOAK_ADMIN=admin -e KEYCLOAK_ADMIN_PASSWORD=admin quay.io/keycloak/keycloak:17.0.0 start-dev
|
Loading…
Reference in New Issue