Files
base-image-debian-rdp-ldap/README.md
2026-04-09 14:44:37 +00:00

63 lines
2.4 KiB
Markdown

# base-image-debian-rdp-ldap
Debian Desktop with LDAP-Authentication and Pulse-Audio. To use behind Guacamole with LDAP-Authentication and pass-through to Debian-Desktop.
[![Build Status](https://git.pi-farm.de/pi-farm/base-image-debian-rdp-ldap/actions/workflows/build-and-push.yaml/badge.svg)](https://git.pi-farm.de/pi-farm/base-image-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.
[![Docker Hub](https://img.shields.io/badge/docker-hub-blue?logo=docker__DOCKERHUB_LINK__logoColor=white)](https://hub.docker.com/r/pifarm/base-image-debian-rdp-ldap)
### 🏗️ Platform Support
| Architecture | Status | Base Image | Build Date |
| :--- | :--- | :--- | :--- |
| x86_64 (amd64) | ✅ Active | debian:trixie | 09.04.2026 16:44 |
| aarch64 (arm64) | ✅ Active | debian:trixie | 09.04.2026 16:44 |
### 🚀 Docker Pull
```bash
docker pull git.pi-farm.de/pi-farm/base-image-debian-rdp-ldap:trixie-de
```
### 🚀 Docker Compose
```yaml
services:
base-image-debian-rdp-ldap:
image: git.pi-farm.de/pi-farm/base-image-debian-rdp-ldap:trixie-de
container_name: base-image-debian-rdp-ldap
restart: unless-stopped
ports:
- 3889
environment:
- SSSD_DEBUG_LEVEL=5
- LDAP_URI=ldap://YOUR-LDAP-SERVER:389
- LDAP_BASE_DN=dc=YOUR-DOMAIN,dc=LOC
- LDAP_BIND_DN=cn=YOUR-BIND-USER,dc=YOUR-DOMAIN,dc=LOC
- LDAP_BIND_PASSWORD=YOUR-SUPER-SECRET-BIND-PASSWORD
- LDAP_SUDO_GROUP=YOUR-SUDO-USERS-GROUP
volumes:
- ./YOUR-PERSISTENT-FOLDER:/home
```
### 🚀 Docker Run
```bash
docker run -d \
--name base-image-debian-rdp-ldap \
--restart unless-stopped \
-e SSSD_DEBUG_LEVEL=5 \
-e LDAP_URI=ldap://YOUR-LDAP-SERVER:389 \
-e LDAP_BASE_DN=dc=YOUR-DOMAIN,dc=LOC \
-e LDAP_BIND_DN=cn=YOUR-BIND-USER,dc=YOUR-DOMAIN,dc=LOC \
-e LDAP_BIND_PASSWORD=YOUR-SUPER-SECRET-BIND-PASSWORD \
-e LDAP_SUDO_GROUP=YOUR-SUDO-USERS-GROUP \
-v ./YOUR-PERSISTENT-FOLDER:/home \
-p 3889 \
git.pi-farm.de/pi-farm/base-image-debian-rdp-ldap:trixie-de
```
*Last updated on: 09.04.2026 16:44*
### 📜 Version History
| Version | Date | Status |
| :--- | :--- | :--- |
| **trixie-de** | 09.04.2026 16:44 | build for trixie-de ✅ |
| **bookworm-de** | 09.04.2026 16:15 | Merge pull request dev (#2) from dev into main Reviewed-on: https://git.pi-farm.de/pi-farm/base-image-debian-rdp-ldap/pulls/2 ✅ |