add keycloak

This commit is contained in:
LRVT
2024-08-27 15:13:28 +02:00
parent 8d5bbf0214
commit 81bed17c95
4 changed files with 111 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
# References
- https://github.com/keycloak/keycloak
- https://www.keycloak.org/getting-started/getting-started-docker
# Notes
````
# copy example env file
cp env.example .env
# adjust env to your needs
# adjust the compose.yml to your needs
nano .env
nano docker-compose.yml
# create docker networks
docker network create proxy
docker network create keycloak-internal
# spawn the stack
docker compose up -d
````