Compare commits

..

No commits in common. "main" and "22.0.3" have entirely different histories.
main ... 22.0.3

4 changed files with 18 additions and 18 deletions

View File

@ -1,12 +0,0 @@
name: Build Multiarch Container Image
on: [push]
jobs:
call-reusable-workflow:
uses: container/multiarch-build-workflow/.gitea/workflows/build.yaml@main
with:
repository: ${{ gitea.repository }}
ref_name: ${{ gitea.ref_name }}
sha: ${{ gitea.sha }}
registry_url: ${{ secrets.REGISTRY_URL }}
registry_user: ${{ secrets.REGISTRY_USER }}
registry_pw: ${{ secrets.REGISTRY_PW }}

11
.woodpecker.yml Normal file
View File

@ -0,0 +1,11 @@
pipeline:
publish-docker-image:
image: plugins/kaniko
settings:
repo: docker.io/thallian/keycloak
tags: latest,${CI_COMMIT_SHA:0:8},${CI_COMMIT_TAG=pre}
dockerfile: Dockerfile
username:
from_secret: DOCKER_USER
password:
from_secret: DOCKER_PW

View File

@ -1,14 +1,14 @@
FROM docker.io/alpine:3.21 AS builder
FROM docker.io/alpine:3.18 AS builder
ENV VERSION=26.1.0
ENV SHA256_SUM=10df73d2b533c241c799a1fa8e0de731db9229a71c2c06390eb3e87f54de63c7
ENV VERSION=22.0.3
ENV SHA256_SUM=fe58029394c164042c5e50e59668eb6d0d9eaa564404522e07ac19f82b1a4d95
RUN wget "https://github.com/keycloak/keycloak/releases/download/$VERSION/keycloak-$VERSION.tar.gz"
RUN echo "$SHA256_SUM keycloak-$VERSION.tar.gz" | sha256sum -c - || exit 1
RUN mkdir -p /keycloak
RUN tar xvf keycloak-$VERSION.tar.gz -C /keycloak --strip 1
FROM docker.io/thallian/alpine-s6:3.21-3.2.0.2
FROM docker.io/thallian/alpine-s6:3.18-3.1.5.0
ENV JAVA_OPTS_APPEND="-Djava.net.preferIPv4Stack=false -Djava.net.preferIPv6Addresses=true"
@ -16,7 +16,7 @@ RUN addgroup -g 2222 keycloak
RUN adduser -h /home/keycloak -u 2222 -D -G keycloak keycloak
RUN apk add --no-cache \
openjdk21-jre-headless \
openjdk17-jre-headless \
bash
COPY --from=builder --chown=keycloak:keycloak /keycloak /home/keycloak/server

View File

@ -8,4 +8,5 @@ exec s6-setuidgid keycloak /home/keycloak/server/bin/kc.sh start \
--db-password "$DB_PASSWORD" \
--hostname "$HOSTNAME" \
--http-enabled true \
--proxy-headers xforwarded
--hostname-strict-backchannel=true \
--proxy edge