Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitea/workflows/build-harbor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ jobs:
podman build --pull \
--platform "$PLATFORMS" \
--manifest "$LOCAL_MANIFEST" \
--build-arg VERSION="${{ steps.version.outputs.version }}" \
--build-arg REVISION="${{ github.sha }}" \
--build-arg CREATED="$(date -u +%Y-%m-%dT%H:%M:%SZ)" \
.
podman manifest inspect "$LOCAL_MANIFEST"

Expand Down
17 changes: 17 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,23 @@ RUN set -eux; \
# ===================================
FROM --platform=$TARGETPLATFORM alpine:3.23 AS standalone-ui

# Image metadata (OCI labels). VERSION/REVISION/CREATED are passed by CI.
ARG VERSION=dev
ARG REVISION=unknown
ARG CREATED=unknown
LABEL org.opencontainers.image.title="Fail2ban-UI" \
org.opencontainers.image.description="Swiss-made management platform for Fail2ban, supporting local and remote (SSH/agent) Fail2ban servers." \
org.opencontainers.image.source="https://github.com/swissmakers/fail2ban-ui" \
org.opencontainers.image.url="https://github.com/swissmakers/fail2ban-ui" \
org.opencontainers.image.documentation="https://github.com/swissmakers/fail2ban-ui/tree/main/docs" \
org.opencontainers.image.vendor="Swissmakers GmbH" \
org.opencontainers.image.authors="Swissmakers GmbH <https://swissmakers.ch>" \
org.opencontainers.image.licenses="AGPL-3.0-only" \
org.opencontainers.image.version="${VERSION}" \
org.opencontainers.image.revision="${REVISION}" \
org.opencontainers.image.created="${CREATED}" \
org.opencontainers.image.base.name="docker.io/library/alpine:3.23"

# Install required container dependencies
RUN set -eux; \
apk update; \
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fail2ban-ui",
"version": "1.5.0",
"version": "1.5.2",
"description": "Fail2Ban-UI is a Swiss-made management platform for Fail2Ban. It provides a central place to monitor, configure, and manage Fail2Ban across one or more hosts, supporting both local and remote Fail2Ban servers.",
"main": "index.js",
"scripts": {
Expand Down