11 Commits

Author SHA1 Message Date
Gitea Action
a73edf183b VERSION.history aktualisiert [skip ci] 2026-03-23 20:04:32 +00:00
035f66ddb1 VERSION.history aktualisiert
All checks were successful
/ release-and-build (push) Successful in 3m18s
2026-03-23 19:59:08 +00:00
b910307ae0 buildargs.env aktualisiert
Some checks failed
/ release-and-build (push) Has been cancelled
2026-03-23 19:56:26 +00:00
6cfb526f8b RHEL 9.2
All checks were successful
/ release-and-build (push) Successful in 2m47s
2026-03-23 16:49:36 +00:00
Gitea Action
ec6c889611 VERSION.history aktualisiert [skip ci] 2026-03-23 16:42:46 +00:00
2525fd16b1 VERSION.history aktualisiert
All checks were successful
/ release-and-build (push) Successful in 2m49s
2026-03-23 16:39:56 +00:00
4b7d09001a .gitea/workflows/build-and-push.yaml aktualisiert
Some checks failed
/ release-and-build (push) Has been cancelled
2026-03-23 16:39:08 +00:00
Gitea Action
1de39774ac .gitea/workflows/build-and-push.yaml aktualisiert [skip ci] 2026-03-23 16:18:18 +00:00
77d89f187e .gitea/workflows/build-and-push.yaml aktualisiert
All checks were successful
/ release-and-build (push) Successful in 2m57s
2026-03-23 16:15:21 +00:00
Gitea Action
ba48437ccd [skip ci] 2026-03-22 05:02:59 +00:00
Gitea Action
8660cadce7 Merge pull request fix s6-package url and extract (#2) from dev into main Reviewed-on: #2 [skip ci] 2026-03-18 13:55:19 +00:00
5 changed files with 32 additions and 15 deletions

View File

@@ -371,11 +371,27 @@ jobs:
run: |
git config --local user.email "action@pi-farm.de"
git config --local user.name "Gitea Action"
# Sicherstellen, dass wir etwas zum Committen haben
git add VERSION.history README.md docker-compose.yml
# Nur committen, wenn es Änderungen gibt
git diff --quiet && git diff --staged --quiet || git commit -m "${{ env.FINAL_MSG }} [skip ci]"
git tag -f "v${{ steps.prep.outputs.docker_tag }}"
git push origin main
git push -f origin "v${{ steps.prep.outputs.docker_tag }}"
# Das Tag exakt so setzen, wie es in prep definiert wurde (ohne extra 'v')
TARGET_TAG="${{ steps.prep.outputs.docker_tag }}"
git tag -f "$TARGET_TAG"
if [[ "${{ gitea.ref }}" == refs/tags/* ]]; then
echo "🏷️ Build aus Tag getriggert: $TARGET_TAG"
# Wir pushen das Tag (force), um die Doku-Updates einzuschließen
git push -f origin "$TARGET_TAG"
else
echo "🌿 Build aus Branch/Schedule getriggert: ${{ gitea.ref_name }}"
# In den Branch pushen (HEAD:branch_name) und das Tag setzen
git push origin HEAD:${{ gitea.ref_name }}
git push -f origin "$TARGET_TAG"
fi
- name: Cleanup Temporary Tags on Docker Hub
if: steps.check_changes.outputs.should_build == 'true' && contains(steps.prep.outputs.push_targets, 'dockerhub')

View File

@@ -12,18 +12,18 @@ This repository is built and pushed automatically.
### 🏗️ Platform Support
| Architecture | Status | Base Image | Build Date |
| :--- | :--- | :--- | :--- |
| x86_64 (amd64) | ✅ Active | registry.access.redhat.com/ubi9/ubi-minimal:latest | 18.03.2026 01:48 |
| aarch64 (arm64) | ✅ Active | registry.access.redhat.com/ubi9/ubi-minimal:latest | 18.03.2026 01:48 |
| x86_64 (amd64) | ✅ Active | registry.access.redhat.com/ubi9/ubi-minimal:9.2 | 23.03.2026 21:04 |
| aarch64 (arm64) | ✅ Active | registry.access.redhat.com/ubi9/ubi-minimal:9.2 | 23.03.2026 21:04 |
### 🚀 Docker Pull
```bash
docker pull git.pi-farm.de/pi-farm/docker-baseimage-rhel:latest
docker pull git.pi-farm.de/pi-farm/docker-baseimage-rhel:9.2
```
### 🚀 Docker Compose
```yaml
services:
docker-baseimage-rhel:
image: git.pi-farm.de/pi-farm/docker-baseimage-rhel:latest
image: git.pi-farm.de/pi-farm/docker-baseimage-rhel:9.2
container_name: docker-baseimage-rhel
restart: unless-stopped
@@ -41,12 +41,12 @@ docker run -d \
-e TZ=Europe/Berlin \
-e PUID=1000 \
-e PGID=1000 \
git.pi-farm.de/pi-farm/docker-baseimage-rhel:latest
git.pi-farm.de/pi-farm/docker-baseimage-rhel:9.2
```
*Last updated on: 18.03.2026 01:48*
*Last updated on: 23.03.2026 21:04*
### 📜 Version History
| Version | Date | Status |
| :--- | :--- | :--- |
| **latest** | 18.03.2026 01:48 | Merge pull request dev (#1) from dev into main Reviewed-on: https://git.pi-farm.de/pi-farm/docker-baseimage-rhel/pulls/1 ✅ |
| **9.2** | 23.03.2026 21:04 | VERSION.history aktualisiert ✅ |

View File

@@ -1 +1,2 @@
| **latest** | 18.03.2026 01:48 | Merge pull request dev (#1) from dev into main Reviewed-on: https://git.pi-farm.de/pi-farm/docker-baseimage-rhel/pulls/1 ✅ |
| **9.2** | 23.03.2026 21:04 | VERSION.history aktualisiert ✅ |

View File

@@ -1,8 +1,8 @@
## BUILD STAGE
BUILD_BASE_TAG=9.3
BUILD_TAG_LATEST=y
BUILD_BASE_TAG=9.2
BUILD_TAG_LATEST=n
# Wir nutzen UBI Minimal für ein kleines Image
BUILD_BASE_IMAGE=registry.access.redhat.com/ubi9/ubi-minimal:latest
BUILD_BASE_IMAGE=registry.access.redhat.com/ubi9/ubi-minimal:${BUILD_BASE_TAG}
BUILD_RHEL_ARCH=x86_64
BUILD_RHEL_ARCH_AARCH64=aarch64

View File

@@ -1,6 +1,6 @@
services:
docker-baseimage-rhel:
image: git.pi-farm.de/pi-farm/docker-baseimage-rhel:latest
image: git.pi-farm.de/pi-farm/docker-baseimage-rhel:9.2
container_name: docker-baseimage-rhel
restart: unless-stopped