Compare commits

..

No commits in common. "6e469f83251f345c54dc2a07d47850c65af49a65" and "bd0ed7446e21655a77d69de930b3ae3030da6f67" have entirely different histories.

6 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,22 @@
[<< back](../README.md) | [Indice](../README.md) | [next >>](../README.md)
# Keycloak
> Enlaces de inteŕes:
> * https://www.keycloak.org/
Keycloak is an Open Source Identity and Access Management solution for modern Applications and Services.
## Instalación desde Docker
> Enlaces de interés:
> * https://www.keycloak.org/guides#getting-started
```
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
```

View File

@ -0,0 +1,3 @@
#!/usr/bin/env bash
docker pull quay.io/keycloak/keycloak

View File

@ -0,0 +1,3 @@
#!/usr/bin/env bash
docker image list

View File

@ -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

View File

@ -0,0 +1,3 @@
#!/usr/bin/env bash
docker rmi quay.io/keycloak/keycloak