From 843b23a9d8d7b932312e7895bd4960ab0ee27206 Mon Sep 17 00:00:00 2001 From: Gitea Action Date: Mon, 23 Feb 2026 12:48:28 +0000 Subject: [PATCH] =?UTF-8?q?root/defaults/lighttpd.conf=20hinzugef=C3=BCgt?= =?UTF-8?q?=20[skip=20ci]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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..e4aca17 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-baseimage-alpine-lighttpd +Alpine Baseimage with s6-overlay and lighttpd + +[![Build Status](https://git.pi-farm.de/pi-farm/docker-baseimage-alpine-lighttpd/actions/workflows/build-and-push.yaml/badge.svg)](https://git.pi-farm.de/pi-farm/docker-baseimage-alpine-lighttpd/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 | alpine:3.23 | 23.02.2026 13:48 | +| aarch64 (arm64) | ✅ Active | alpine:3.23 | 23.02.2026 13:48 | + +### 🚀 Docker Pull ```bash -docker pull git.pi-farm.de/{{.Owner.Name}}/{{.RepoName}}:latest +docker pull git.pi-farm.de/pi-farm/docker-baseimage-alpine-lighttpd:1.4.82 ``` ---- -*Last updated on: __DATE__* +### 🚀 Docker Compose +```yaml +services: + docker-baseimage-alpine-lighttpd: + image: git.pi-farm.de/pi-farm/docker-baseimage-alpine-lighttpd:1.4.82 + container_name: docker-baseimage-alpine-lighttpd + 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-baseimage-alpine-lighttpd \ + --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-baseimage-alpine-lighttpd:1.4.82 +``` + +*Last updated on: 23.02.2026 13:48* + +### 📜 Version History +| Version | Date | Status | +| :--- | :--- | :--- | +| **1.4.82** | 23.02.2026 13:48 | root/defaults/lighttpd.conf hinzugefügt ✅ | diff --git a/VERSION.history b/VERSION.history new file mode 100644 index 0000000..3a0b012 --- /dev/null +++ b/VERSION.history @@ -0,0 +1 @@ +| **1.4.82** | 23.02.2026 13:48 | root/defaults/lighttpd.conf hinzugefügt ✅ | diff --git a/docker-compose.yml b/docker-compose.yml index 8b13789..a656b5c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1 +1,14 @@ - +services: + docker-baseimage-alpine-lighttpd: + image: git.pi-farm.de/pi-farm/docker-baseimage-alpine-lighttpd:1.4.82 + container_name: docker-baseimage-alpine-lighttpd + restart: unless-stopped + ports: + - 8080:80 + environment: + - TZ=Europe/Berlin + - PUID=1000 + - PGID=1000 + volumes: + - ./config:/config + - ./data:/app/www