dev #2

Merged
pi-farm merged 66 commits from dev into main 2026-04-09 13:56:20 +00:00
3 changed files with 56 additions and 10 deletions
Showing only changes of commit d23afb58ce - Show all commits

View File

@@ -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. 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 ```bash
docker pull git.pi-farm.de/{{.Owner.Name}}/{{.RepoName}}:latest docker pull git.pi-farm.de/pi-farm/baseimage-debian-rdp-ldap:bookworm
``` ```
--- ### 🚀 Docker Compose
*Last updated on: __DATE__* ```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 | ✅ |

View File

@@ -0,0 +1 @@
| **bookworm** | 02.04.2026 14:15 | ✅ |

View File

@@ -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