-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
13 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
version: '3.6' | ||
version: "3.6" | ||
services: | ||
keycloak: | ||
build: docker | ||
build: | ||
context: docker | ||
args: | ||
KEYCLOAK_VERSION: ${KEYCLOAK_VERSION} | ||
environment: | ||
KEYCLOAK_ADMIN: admin | ||
KEYCLOAK_ADMIN_PASSWORD: password | ||
KC_PROXY: edge | ||
ports: | ||
- "9080:8080" | ||
# comment line below for default quarkus settings | ||
command: --http-relative-path /auth | ||
- "8080:8080" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,3 @@ | ||
FROM registry.access.redhat.com/ubi8-minimal AS build-env | ||
|
||
ENV KEYCLOAK_VERSION 17.0.0 | ||
ARG KEYCLOAK_DIST=https://github.com/keycloak/keycloak/releases/download/$KEYCLOAK_VERSION/keycloak-$KEYCLOAK_VERSION.tar.gz | ||
|
||
RUN microdnf install -y tar gzip | ||
|
||
ADD $KEYCLOAK_DIST /tmp/keycloak/ | ||
|
||
# The next step makes it uniform for local development and upstream built. | ||
# If it is a local tar archive then it is unpacked, if from remote is just downloaded. | ||
RUN (cd /tmp/keycloak && \ | ||
tar -xvf /tmp/keycloak/keycloak-*.tar.gz && \ | ||
rm /tmp/keycloak/keycloak-*.tar.gz) || true | ||
|
||
RUN mv /tmp/keycloak/keycloak-* /opt/keycloak && mkdir -p /opt/keycloak/data | ||
|
||
RUN chmod -R g+rwX /opt/keycloak | ||
|
||
FROM registry.access.redhat.com/ubi8-minimal | ||
|
||
COPY --from=build-env --chown=1000:0 /opt/keycloak /opt/keycloak | ||
|
||
RUN microdnf update -y && \ | ||
microdnf install -y java-11-openjdk-headless && microdnf clean all && rm -rf /var/cache/yum/* && \ | ||
echo "keycloak:x:0:root" >> /etc/group && \ | ||
echo "keycloak:x:1000:0:keycloak user:/opt/keycloak:/sbin/nologin" >> /etc/passwd | ||
|
||
USER 1000 | ||
|
||
EXPOSE 8080 | ||
EXPOSE 8443 | ||
|
||
ENTRYPOINT [ "/opt/keycloak/bin/kc.sh", "start-dev" ] | ||
FROM quay.io/keycloak/keycloak:${KEYCLOAK_VERSION} | ||
ENTRYPOINT /opt/keycloak/bin/kc.sh | ||
CMD start-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters