fix BUILD_APPS [skip ci]

This commit is contained in:
Gitea Action
2026-02-24 20:22:29 +00:00
parent 51d9004ed7
commit 698f309ec9
3 changed files with 66 additions and 11 deletions

View File

@@ -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. 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 ```bash
docker pull git.pi-farm.de/{{.Owner.Name}}/{{.RepoName}}:latest docker pull git.pi-farm.de/pi-farm/docker-alpine-mirror:3.23
``` ```
--- ### 🚀 Docker Compose
*Last updated on: __DATE__* ```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 ✅ |

1
VERSION.history Normal file
View File

@@ -0,0 +1 @@
| **3.23** | 24.02.2026 21:22 | fix BUILD_APPS ✅ |

View File

@@ -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