(keycloak) add keycloak as auth server

Keycloak is a open source identity and access management
for modern applications and services.
- add keycloak server in docker-compose
- add keycloak in frontend
This commit is contained in:
Anthony LC
2024-01-09 15:53:46 +01:00
committed by Anthony LC
parent ae07bc9246
commit bf1b7736bb
5 changed files with 2313 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
# Postgresql db container configuration
POSTGRES_DB=keycloak
POSTGRES_USER=people
POSTGRES_PASSWORD=pass
# App database configuration
DB_HOST=kc_postgresql
DB_NAME=keycloak
DB_USER=people
DB_PASSWORD=pass
DB_PORT=5433