From d23afb58ce81eb333eda8815da84da208f5d5c79 Mon Sep 17 00:00:00 2001 From: Gitea Action Date: Thu, 2 Apr 2026 12:15:23 +0000 Subject: [PATCH] [skip ci] --- README.md | 55 +++++++++++++++++++++++++++++++++++++--------- VERSION.history | 1 + docker-compose.yml | 10 +++++++++ 3 files changed, 56 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f452a48..eb62436 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,51 @@ -# 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) +# baseimage-debian-rdp-ldap +Debian Desktop with LDAP-Auth to use with Guacamole as RDP-destination + +[![Build Status](https://git.pi-farm.de/pi-farm/baseimage-debian-rdp-ldap/actions/workflows/build-and-push.yaml/badge.svg)](https://git.pi-farm.de/pi-farm/baseimage-debian-rdp-ldap/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 | debian:bookworm | 02.04.2026 14:15 | +| aarch64 (arm64) | ✅ Active | debian:bookworm | 02.04.2026 14:15 | + +### 🚀 Docker Pull ```bash -docker pull git.pi-farm.de/{{.Owner.Name}}/{{.RepoName}}:latest +docker pull git.pi-farm.de/pi-farm/baseimage-debian-rdp-ldap:bookworm ``` ---- -*Last updated on: __DATE__* +### 🚀 Docker Compose +```yaml +services: + baseimage-debian-rdp-ldap: + image: git.pi-farm.de/pi-farm/baseimage-debian-rdp-ldap:bookworm + container_name: baseimage-debian-rdp-ldap + restart: unless-stopped + ports: + - 3889 + + volumes: + - ./sssd.conf:/etc/sssd/sssd.conf:ro + - ./home:/home +``` +### 🚀 Docker Run +```bash +docker run -d \ + --name baseimage-debian-rdp-ldap \ + --restart unless-stopped \ + -v ./sssd.conf:/etc/sssd/sssd.conf:ro \ + -v ./home:/home \ + -p 3889 \ + git.pi-farm.de/pi-farm/baseimage-debian-rdp-ldap:bookworm +``` + +*Last updated on: 02.04.2026 14:15* + +### 📜 Version History +| Version | Date | Status | +| :--- | :--- | :--- | +| **bookworm** | 02.04.2026 14:15 | ✅ | diff --git a/VERSION.history b/VERSION.history index e69de29..4aeeb29 100644 --- a/VERSION.history +++ b/VERSION.history @@ -0,0 +1 @@ +| **bookworm** | 02.04.2026 14:15 | ✅ | diff --git a/docker-compose.yml b/docker-compose.yml index 8b13789..f71140c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1 +1,11 @@ +services: + baseimage-debian-rdp-ldap: + image: git.pi-farm.de/pi-farm/baseimage-debian-rdp-ldap:bookworm + container_name: baseimage-debian-rdp-ldap + restart: unless-stopped + ports: + - 3889 + volumes: + - ./sssd.conf:/etc/sssd/sssd.conf:ro + - ./home:/home