From 05f7b542a384ab2c7a1722fb476c517f94aa2f65 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 12 Feb 2026 16:05:32 +0000 Subject: [PATCH] add ARG APP_USER to Dockerfiles [skip ci] --- README.md | 22 ++++++++++++++-------- VERSION.history | 1 + docker-compose.yml | 13 ++++++++++++- 3 files changed, 27 insertions(+), 9 deletions(-) create mode 100644 VERSION.history diff --git a/README.md b/README.md index 693e801..32535bb 100644 --- a/README.md +++ b/README.md @@ -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 ✅ | diff --git a/VERSION.history b/VERSION.history new file mode 100644 index 0000000..18604bc --- /dev/null +++ b/VERSION.history @@ -0,0 +1 @@ +| **v3.23** | 12.02.2026 17:05 | add ARG APP_USER to Dockerfiles ✅ | diff --git a/docker-compose.yml b/docker-compose.yml index 8b13789..aef6c09 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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"