keycloak/.env hinzugefügt

This commit is contained in:
2026-04-10 17:21:23 +00:00
parent a09564cab4
commit 5e134bf2c2

50
keycloak/.env Normal file
View File

@@ -0,0 +1,50 @@
# -----------------------------
# Keycloak Version
# -----------------------------
KEYCLOAK_VERSION=latest
# -----------------------------
# Database Configuration
# -----------------------------
KC_DB=postgres
KC_DB_SCHEMA=public
KC_DB_USERNAME=keycloak
KC_DB_PASSWORD=change_me_db_password
KC_DB_URL_HOST=postgres
# -----------------------------
# Keycloak Features
# -----------------------------
KC_METRICS_ENABLED=true
KC_HEALTH_ENABLED=true
# -----------------------------
# Bootstrap Admin User
# -----------------------------
KC_BOOTSTRAP_ADMIN_USERNAME=admin
KC_BOOTSTRAP_ADMIN_PASSWORD=change_me_admin_password
# -----------------------------
# Proxy / Network Settings
# -----------------------------
KC_PROXY_HEADERS=xforwarded
KC_HTTP_ENABLED=true
KC_HOSTNAME_STRICT=false
KC_HOSTNAME=keycloak.local
KC_PORT=8080
# -----------------------------
# Container Settings
# -----------------------------
CONTAINER_NAME=keycloak
# -----------------------------
# Host Volume for Themes
# -----------------------------
HOST_VOLUME=./themes
# -----------------------------
# Port Mapping
# -----------------------------
HOST_PORT1=8080
HOST_PORT2=8443