From 29583fec3bd36c29a9285cb7d0e222dfeb8f4f8d Mon Sep 17 00:00:00 2001 From: Gitea Action Date: Wed, 25 Mar 2026 09:29:10 +0000 Subject: [PATCH] [skip ci] --- README.md | 59 ++++++++++++++++++++++++++++++++++++++-------- VERSION.history | 1 + docker-compose.yml | 14 ++++++++++- 3 files changed, 63 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index f452a48..7b5593e 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,55 @@ -# Projekt: {{.RepoName}} [![Build Status](https://git.pi-farm.de/{{.Owner.Name}}/{{.RepoName}}/actions/workflows/build-and-push.yaml/badge.svg)](https://git.pi-farm.de/{{.Owner.Name}}/{{.RepoName}}/actions) +# hibp-docker +Docker implementation of https://github.com/oschonrock/hibp.git. + +[![Build Status](https://git.pi-farm.de/pi-farm/hibp-docker/actions/workflows/build-and-push.yaml/badge.svg)](https://git.pi-farm.de/pi-farm/hibp-docker/actions) +[![Gitea Repo](https://img.shields.io/badge/gitea-repository-blue?logo=gitea&logoColor=white)](__REPO_URL__) This repository is built and pushed automatically. -### 🏗️ Platform Support -| Architecture | Status | Base-Image | -| :--- | :--- | :--- | -| **x86_64** (amd64) | ✅ Active | `__BASE_IMAGE__` | -| **aarch64** (arm64) | __ARM_STATUS__ | `__BASE_IMAGE__` | -### 🚀 Docker Pull Command + +### 🏗️ Platform Support +| Architecture | Status | Base Image | Build Date | +| :--- | :--- | :--- | :--- | +| x86_64 (amd64) | ✅ Active | git.pi-farm.de/pi-farm/docker-baseimage-debian:trixie-slim | 25.03.2026 10:29 | +| aarch64 (arm64) | ✅ Active | git.pi-farm.de/pi-farm/docker-baseimage-debian:trixie-slim | 25.03.2026 10:29 | + +### 🚀 Docker Pull ```bash -docker pull git.pi-farm.de/{{.Owner.Name}}/{{.RepoName}}:latest +docker pull git.pi-farm.de/pi-farm/hibp-docker:0.6.2 ``` ---- -*Last updated on: __DATE__* +### 🚀 Docker Compose +```yaml +services: + hibp-docker: + image: git.pi-farm.de/pi-farm/hibp-docker:0.6.2 + container_name: hibp-docker + restart: unless-stopped + ports: + - 8082:8082 + environment: + - TZ=Europe/Berlin + - PUID=1000 + - PGID=1000 + volumes: + - /data +``` +### 🚀 Docker Run +```bash +docker run -d \ + --name hibp-docker \ + --restart unless-stopped \ + -e TZ=Europe/Berlin \ + -e PUID=1000 \ + -e PGID=1000 \ + -v /data \ + -p 8082:8082 \ + git.pi-farm.de/pi-farm/hibp-docker:0.6.2 +``` + +*Last updated on: 25.03.2026 10:29* + +### 📜 Version History +| Version | Date | Status | +| :--- | :--- | :--- | +| **0.6.2** | 25.03.2026 10:29 | ✅ | diff --git a/VERSION.history b/VERSION.history index e69de29..8799fa0 100644 --- a/VERSION.history +++ b/VERSION.history @@ -0,0 +1 @@ +| **0.6.2** | 25.03.2026 10:29 | ✅ | diff --git a/docker-compose.yml b/docker-compose.yml index 8b13789..1aebe63 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1 +1,13 @@ - +services: + hibp-docker: + image: git.pi-farm.de/pi-farm/hibp-docker:0.6.2 + container_name: hibp-docker + restart: unless-stopped + ports: + - 8082:8082 + environment: + - TZ=Europe/Berlin + - PUID=1000 + - PGID=1000 + volumes: + - /data