From 698f309ec9140081bd7d92987e07bfda0f1d267b Mon Sep 17 00:00:00 2001 From: Gitea Action Date: Tue, 24 Feb 2026 20:22:29 +0000 Subject: [PATCH] fix BUILD_APPS [skip ci] --- README.md | 61 ++++++++++++++++++++++++++++++++++++++-------- VERSION.history | 1 + docker-compose.yml | 15 +++++++++++- 3 files changed, 66 insertions(+), 11 deletions(-) create mode 100644 VERSION.history diff --git a/README.md b/README.md index f452a48..5aba743 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,57 @@ -# 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) +# docker-alpine-mirror +Alpine Mirror with s6-overlay and lighttpd, rsync, vnstat, cron + +[![Build Status](https://git.pi-farm.de/pi-farm/docker-alpine-mirror/actions/workflows/build-and-push.yaml/badge.svg)](https://git.pi-farm.de/pi-farm/docker-alpine-mirror/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-alpine:3.23 | 24.02.2026 21:22 | +| aarch64 (arm64) | ✅ Active | git.pi-farm.de/pi-farm/docker-baseimage-alpine:3.23 | 24.02.2026 21:22 | + +### 🚀 Docker Pull ```bash -docker pull git.pi-farm.de/{{.Owner.Name}}/{{.RepoName}}:latest +docker pull git.pi-farm.de/pi-farm/docker-alpine-mirror:3.23 ``` ---- -*Last updated on: __DATE__* +### 🚀 Docker Compose +```yaml +services: + docker-alpine-mirror: + image: git.pi-farm.de/pi-farm/docker-alpine-mirror:3.23 + container_name: docker-alpine-mirror + restart: unless-stopped + ports: + - 8080:80 + environment: + - TZ=Europe/Berlin + - PUID=1000 + - PGID=1000 + volumes: + - ./config:/config + - ./data:/app/www +``` +### 🚀 Docker Run +```bash +docker run -d \ + --name docker-alpine-mirror \ + --restart unless-stopped \ + -e TZ=Europe/Berlin \ + -e PUID=1000 \ + -e PGID=1000 \ + -v ./config:/config \ + -v ./data:/app/www \ + -p 8080:80 \ + git.pi-farm.de/pi-farm/docker-alpine-mirror:3.23 +``` + +*Last updated on: 24.02.2026 21:22* + +### 📜 Version History +| Version | Date | Status | +| :--- | :--- | :--- | +| **3.23** | 24.02.2026 21:22 | fix BUILD_APPS ✅ | diff --git a/VERSION.history b/VERSION.history new file mode 100644 index 0000000..40c5525 --- /dev/null +++ b/VERSION.history @@ -0,0 +1 @@ +| **3.23** | 24.02.2026 21:22 | fix BUILD_APPS ✅ | diff --git a/docker-compose.yml b/docker-compose.yml index 8b13789..986d193 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1 +1,14 @@ - +services: + docker-alpine-mirror: + image: git.pi-farm.de/pi-farm/docker-alpine-mirror:3.23 + container_name: docker-alpine-mirror + restart: unless-stopped + ports: + - 8080:80 + environment: + - TZ=Europe/Berlin + - PUID=1000 + - PGID=1000 + volumes: + - ./config:/config + - ./data:/app/www