From 7dec36f07d1a277d480e42c619a0dcbbb5da7a0e Mon Sep 17 00:00:00 2001 From: Sebastian Tobie Date: Fri, 16 Sep 2022 23:03:56 +0200 Subject: [PATCH] removed the preprocesser for now --- Containerfile.in => Containerfile | 8 -------- 1 file changed, 8 deletions(-) rename Containerfile.in => Containerfile (88%) diff --git a/Containerfile.in b/Containerfile similarity index 88% rename from Containerfile.in rename to Containerfile index 1a5a9e5..7df854e 100644 --- a/Containerfile.in +++ b/Containerfile @@ -2,11 +2,7 @@ FROM quay.io/keycloak/keycloak:latest as builder ENV PATH="/opt/keycloak/bin:/usr/bin:/usr/local/bin" ENV KC_HEALTH_ENABLED=false -#ifdef DEBUG -ENV KC_DB=dev-file -#else ENV KC_DB=postgres -#endif ENV KC_CACHE_STACK=tcp ENV KC_HTTPS_CLIENT_AUTH=request ENV KC_FEATURES=dynamic-scopes,recovery-codes,preview @@ -18,12 +14,8 @@ ENV PATH="/opt/keycloak/bin:/usr/bin:/usr/local/bin" COPY --from=builder /opt/keycloak/ /opt/keycloak/ WORKDIR /opt/keycloak -#ifdef DEBUG -ENV KC_HOSTNAME_URL="http://localhost:8080" -#else ENV KC_HOSTNAME_ADMIN_URL="https://admin.sso.sebastian-tobie.de" ENV KC_HOSTNAME_URL="https://sso.sebastian-tobie.de" -#endif ENV KC_DB_USERNAME=keycloak ENV KC_DB_PASSWORD=changeme ENV KC_DB_URL=postgres.services.tobie