Block a user
hibiscus-server (latest)
Published 2026-03-22 04:01:16 +01:00 by elena
Installation
docker pull git.nasra.de/elena/hibiscus-server:latestsha256:60fc49957edd95956c64f3bcf666b5aa725fc0b53f01bdfbb9e25de54d787967
Image Layers
| ADD alpine-minirootfs-3.23.3-x86_64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| ENV JAVA_HOME=/opt/java/openjdk |
| ENV PATH=/opt/java/openjdk/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8 |
| RUN /bin/sh -c set -eux; apk add --no-cache fontconfig ttf-dejavu gnupg ca-certificates p11-kit-trust musl-locales musl-locales-lang tzdata coreutils openssl ; rm -rf /var/cache/apk/* # buildkit |
| ENV JAVA_VERSION=jdk-21.0.10+7 |
| RUN /bin/sh -c set -eux; ARCH="$(apk --print-arch)"; case "${ARCH}" in aarch64) ESUM='d1cd7b33dcd81293b0b705f4d0e79adce092786be31736a63abe6a4b31841ae5'; BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.10%2B7/OpenJDK21U-jre_aarch64_alpine-linux_hotspot_21.0.10_7.tar.gz'; ;; x86_64) ESUM='4f6200277644afe6ad49218ae1dd45ab3d0d0b2ac4109163604e36156a93a306'; BINARY_URL='https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.10%2B7/OpenJDK21U-jre_x64_alpine-linux_hotspot_21.0.10_7.tar.gz'; ;; *) echo "Unsupported arch: ${ARCH}"; exit 1; ;; esac; wget -O /tmp/openjdk.tar.gz ${BINARY_URL}; wget -O /tmp/openjdk.tar.gz.sig ${BINARY_URL}.sig; export GNUPGHOME="$(mktemp -d)"; gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 3B04D753C9050D9A5D343F39843C48A565F8F04B; gpg --batch --verify /tmp/openjdk.tar.gz.sig /tmp/openjdk.tar.gz; rm -rf "${GNUPGHOME}" /tmp/openjdk.tar.gz.sig; echo "${ESUM} */tmp/openjdk.tar.gz" | sha256sum -c -; mkdir -p "$JAVA_HOME"; tar --extract --file /tmp/openjdk.tar.gz --directory "$JAVA_HOME" --strip-components 1 --no-same-owner ; rm -f /tmp/openjdk.tar.gz; # buildkit |
| RUN /bin/sh -c set -eux; echo "Verifying install ..."; echo "java --version"; java --version; echo "Complete." # buildkit |
| COPY --chmod=755 entrypoint.sh /__cacert_entrypoint.sh # buildkit |
| ENTRYPOINT ["/__cacert_entrypoint.sh"] |
| ARG HIBISCUS_VERSION=2.12.2 |
| ARG HIBISCUS_URL=https://www.willuhn.de/products/hibiscus-server/releases/hibiscus-server-2.12.2.zip |
| LABEL maintainer=Elena Arenskötter |
| LABEL description=Hibiscus Server (FinTS/HBCI) — built from official willuhn.de releases |
| LABEL hibiscus.version=2.12.2 |
| RUN |2 HIBISCUS_VERSION=2.12.2 HIBISCUS_URL=https://www.willuhn.de/products/hibiscus-server/releases/hibiscus-server-2.12.2.zip /bin/sh -c apk add --no-cache bash gnupg wget tzdata && cp /usr/share/zoneinfo/Europe/Berlin /etc/localtime && echo "Europe/Berlin" > /etc/timezone # buildkit |
| RUN |2 HIBISCUS_VERSION=2.12.2 HIBISCUS_URL=https://www.willuhn.de/products/hibiscus-server/releases/hibiscus-server-2.12.2.zip /bin/sh -c addgroup -S hibiscus && adduser -S hibiscus -G hibiscus # buildkit |
| WORKDIR /tmp/build |
| RUN |2 HIBISCUS_VERSION=2.12.2 HIBISCUS_URL=https://www.willuhn.de/products/hibiscus-server/releases/hibiscus-server-2.12.2.zip /bin/sh -c set -eux; wget -q "${HIBISCUS_URL}" -O hibiscus-server.zip; wget -q "${HIBISCUS_URL}.asc" -O hibiscus-server.zip.asc || true; PGP_KEY_ID="5A8ED9CFC0DB6C70"; if [ -s hibiscus-server.zip.asc ]; then gpg --keyserver hkps://keys.openpgp.org --recv-keys "${PGP_KEY_ID}" 2>/dev/null || gpg --keyserver hkps://keyserver.ubuntu.com --recv-keys "${PGP_KEY_ID}" 2>/dev/null || true; gpg --verify hibiscus-server.zip.asc hibiscus-server.zip && echo "✓ PGP signature verified" || echo "⚠ PGP verification failed or key unavailable — review manually"; else echo "⚠ No .asc signature file available for this version"; fi; mkdir -p /opt/hibiscus-server; unzip -q hibiscus-server.zip -d /opt/; if [ -d "/opt/hibiscus-server-${HIBISCUS_VERSION}" ]; then mv /opt/hibiscus-server-${HIBISCUS_VERSION}/* /opt/hibiscus-server/; rmdir /opt/hibiscus-server-${HIBISCUS_VERSION}; fi; rm -rf /tmp/build /root/.gnupg; apk del gnupg wget # buildkit |
| RUN |2 HIBISCUS_VERSION=2.12.2 HIBISCUS_URL=https://www.willuhn.de/products/hibiscus-server/releases/hibiscus-server-2.12.2.zip /bin/sh -c mkdir -p /srv/hibiscus /opt/hibiscus-server/cfg && chown -R hibiscus:hibiscus /srv/hibiscus /opt/hibiscus-server # buildkit |
| COPY --chmod=755 entrypoint.sh /entrypoint.sh # buildkit |
| EXPOSE [8080/tcp] |
| VOLUME [/srv/hibiscus] |
| USER hibiscus |
| ENTRYPOINT ["/entrypoint.sh"] |
Labels
| Key | Value |
|---|---|
| description | Hibiscus Server (FinTS/HBCI) — built from official willuhn.de releases |
| hibiscus.version | 2.12.2 |
| maintainer | Elena Arenskötter |