diff --git a/README.md b/README.md index f452a48..d58571c 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,52 @@ -# 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-debian +This is a debian based image with s6-overlay. +Based on the great work of Linuxserver.io + +[![Build Status](https://git.pi-farm.de/pi-farm/docker-baseimage-debian/actions/workflows/build-and-push.yaml/badge.svg)](https://git.pi-farm.de/pi-farm/docker-baseimage-debian/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 | 16.03.2026 17:25 | +| aarch64 (arm64) | ✅ Active | alpine:3 | 16.03.2026 17:25 | + +### 🚀 Docker Pull ```bash -docker pull git.pi-farm.de/{{.Owner.Name}}/{{.RepoName}}:latest +docker pull git.pi-farm.de/pi-farm/docker-baseimage-debian:latest ``` ---- -*Last updated on: __DATE__* +### 🚀 Docker Compose +```yaml +services: + docker-baseimage-debian: + image: git.pi-farm.de/pi-farm/docker-baseimage-debian:latest + container_name: docker-baseimage-debian + restart: unless-stopped + + environment: + - TZ=Europe/Berlin + - PUID=1000 + - PGID=1000 + +``` +### 🚀 Docker Run +```bash +docker run -d \ + --name docker-baseimage-debian \ + --restart unless-stopped \ + -e TZ=Europe/Berlin \ + -e PUID=1000 \ + -e PGID=1000 \ + git.pi-farm.de/pi-farm/docker-baseimage-debian:latest +``` + +*Last updated on: 16.03.2026 17:25* + +### 📜 Version History +| Version | Date | Status | +| :--- | :--- | :--- | +| **latest** | 16.03.2026 17:25 | removed additional bracket ✅ | diff --git a/VERSION.history b/VERSION.history index e69de29..ef12805 100644 --- a/VERSION.history +++ b/VERSION.history @@ -0,0 +1 @@ +| **latest** | 16.03.2026 17:25 | removed additional bracket ✅ | diff --git a/docker-compose.yml b/docker-compose.yml index 8b13789..d7fb016 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1 +1,11 @@ +services: + docker-baseimage-debian: + image: git.pi-farm.de/pi-farm/docker-baseimage-debian:latest + container_name: docker-baseimage-debian + restart: unless-stopped + + environment: + - TZ=Europe/Berlin + - PUID=1000 + - PGID=1000