add ARG APP_USER to Dockerfiles [skip ci]

This commit is contained in:
GitHub Action
2026-02-12 16:05:32 +00:00
parent a818e6648f
commit 05f7b542a3
3 changed files with 27 additions and 9 deletions

View File

@@ -1,16 +1,22 @@
# 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)
# Projekt: docker-baseimage-alpine
[![Build Status](https://git.pi-farm.de/pi-farm/docker-baseimage-alpine/actions/workflows/build-and-push.yaml/badge.svg)](https://git.pi-farm.de/pi-farm/docker-baseimage-alpine/actions)
Dieses Repository wird automatisch gebaut und gepusht.
### 🏗️ Plattform Unterstützung
| Architektur | Status | Basis-Image |
| :--- | :--- | :--- |
| **x86_64** (amd64) | ✅ Aktiv | `__BASE_IMAGE__` |
| **aarch64** (arm64) | __ARM_STATUS__ | `__BASE_IMAGE__` |
| Architektur | Status | Basis-Image | Build Datum |
| :--- | :--- | :--- | :--- |
| x86_64 (amd64) | ✅ Aktiv | alpine:3.23 | 12.02.2026 17:05 |
| aarch64 (arm64) | ✅ Aktiv (eigenes Dockerfile) | alpine:3.23 | 12.02.2026 17:05 |
### 🚀 Docker Pull Befehl
```bash
docker pull git.pi-farm.de/{{.Owner.Name}}/{{.RepoName}}:latest
docker pull git.pi-farm.de/pi-farm/docker-baseimage-alpine:3.23
```
---
*Zuletzt aktualisiert am: __DATE__*
*Zuletzt aktualisiert am: 12.02.2026 17:05*
### 📜 Versions-Historie
| Version | Datum | Status |
| :--- | :--- | :--- |
| **v3.23** | 12.02.2026 17:05 | add ARG APP_USER to Dockerfiles ✅ |

1
VERSION.history Normal file
View File

@@ -0,0 +1 @@
| **v3.23** | 12.02.2026 17:05 | add ARG APP_USER to Dockerfiles ✅ |

View File

@@ -1 +1,12 @@
services:
docker-baseimage-alpine:
image: git.pi-farm.de/pi-farm/docker-baseimage-alpine:3.23
container_name: docker-baseimage-alpine
restart: unless-stopped
# Falls du Variablen aus der buildargs.env brauchst:
environment:
- APP_VERSION=3.23
- BASE_IMAGE_USED=alpine:3.23
# Hier kannst du weitere Standard-Einstellungen definieren
ports:
- "8080:80"