[skip ci]

This commit is contained in:
Gitea Action
2026-04-09 08:11:14 +00:00
parent 49d7a0b61d
commit 048a531481
3 changed files with 25 additions and 23 deletions

View File

@@ -1,18 +1,18 @@
# base-image-debian-rdp-ldap # base-image-debian-rdp-ldap
Debian Desktop with LDAP-Auth, Gitea-Workflow compatible Debian Desktop with LDAP-Authentication. 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) [![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__) [![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.
[![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 ### 🏗️ Platform Support
| Architecture | Status | Base Image | Build Date | | Architecture | Status | Base Image | Build Date |
| :--- | :--- | :--- | :--- | | :--- | :--- | :--- | :--- |
| x86_64 (amd64) | ✅ Active | debian:bookworm | 07.04.2026 19:27 | | x86_64 (amd64) | ✅ Active | debian:bookworm | 09.04.2026 10:11 |
| aarch64 (arm64) | ✅ Active | debian:bookworm | 07.04.2026 19:27 | | aarch64 (arm64) | ✅ Active | debian:bookworm | 09.04.2026 10:11 |
### 🚀 Docker Pull ### 🚀 Docker Pull
```bash ```bash
@@ -29,13 +29,13 @@ services:
- 3889 - 3889
environment: environment:
- SSSD_DEBUG_LEVEL=5 - SSSD_DEBUG_LEVEL=5
- LDAP_URI=ldap://10.0.2.123:389 - LDAP_URI=ldap://YOUR-LDAP-SERVER:389
- LDAP_BASE_DN=dc=pi-farm,dc=de - LDAP_BASE_DN=dc=YOUR-DOMAIN,dc=LOC
- LDAP_BIND_DN=cn=admin,dc=pi-farm,dc=de - LDAP_BIND_DN=cn=YOUR-BIND-USER,dc=YOUR-DOMAIN,dc=LOC
- LDAP_BIND_PASSWORD=YOUR-SUPER-SECRET-PASSWORD - LDAP_BIND_PASSWORD=YOUR-SUPER-SECRET-BIND-PASSWORD
- LDAP_SUDO_GROUP=sudo_users - LDAP_SUDO_GROUP=YOUR-SUDO-USERS-GROUP
volumes: volumes:
- ./home:/home - ./YOUR-PERSISTENT-FOLDER:/home
``` ```
### 🚀 Docker Run ### 🚀 Docker Run
```bash ```bash
@@ -43,21 +43,22 @@ docker run -d \
--name base-image-debian-rdp-ldap \ --name base-image-debian-rdp-ldap \
--restart unless-stopped \ --restart unless-stopped \
-e SSSD_DEBUG_LEVEL=5 \ -e SSSD_DEBUG_LEVEL=5 \
-e LDAP_URI=ldap://10.0.2.123:389 \ -e LDAP_URI=ldap://YOUR-LDAP-SERVER:389 \
-e LDAP_BASE_DN=dc=pi-farm,dc=de \ -e LDAP_BASE_DN=dc=YOUR-DOMAIN,dc=LOC \
-e LDAP_BIND_DN=cn=admin,dc=pi-farm,dc=de \ -e LDAP_BIND_DN=cn=YOUR-BIND-USER,dc=YOUR-DOMAIN,dc=LOC \
-e LDAP_BIND_PASSWORD=YOUR-SUPER-SECRET-PASSWORD \ -e LDAP_BIND_PASSWORD=YOUR-SUPER-SECRET-BIND-PASSWORD \
-e LDAP_SUDO_GROUP=sudo_users \ -e LDAP_SUDO_GROUP=YOUR-SUDO-USERS-GROUP \
-v ./home:/home \ -v ./YOUR-PERSISTENT-FOLDER:/home \
-p 3889 \ -p 3889 \
git.pi-farm.de/pi-farm/base-image-debian-rdp-ldap:bookworm-de git.pi-farm.de/pi-farm/base-image-debian-rdp-ldap:bookworm-de
``` ```
*Last updated on: 07.04.2026 19:27* *Last updated on: 09.04.2026 10:11*
### 📜 Version History ### 📜 Version History
| Version | Date | Status | | Version | Date | Status |
| :--- | :--- | :--- | | :--- | :--- | :--- |
| **bookworm-de** | 09.04.2026 10:11 | ✅ |
| **bookworm-de** | 07.04.2026 19:27 | ✅ | | **bookworm-de** | 07.04.2026 19:27 | ✅ |
| **bookworm-de** | 07.04.2026 17:38 | ✅ | | **bookworm-de** | 07.04.2026 17:38 | ✅ |
| **bookworm-de** | 05.04.2026 11:47 | ✅ | | **bookworm-de** | 05.04.2026 11:47 | ✅ |

View File

@@ -1,3 +1,4 @@
| **bookworm-de** | 09.04.2026 10:11 | ✅ |
| **bookworm-de** | 07.04.2026 19:27 | ✅ | | **bookworm-de** | 07.04.2026 19:27 | ✅ |
| **bookworm-de** | 07.04.2026 17:38 | ✅ | | **bookworm-de** | 07.04.2026 17:38 | ✅ |
| **bookworm-de** | 05.04.2026 11:47 | ✅ | | **bookworm-de** | 05.04.2026 11:47 | ✅ |

View File

@@ -7,10 +7,10 @@ services:
- 3889 - 3889
environment: environment:
- SSSD_DEBUG_LEVEL=5 - SSSD_DEBUG_LEVEL=5
- LDAP_URI=ldap://10.0.2.123:389 - LDAP_URI=ldap://YOUR-LDAP-SERVER:389
- LDAP_BASE_DN=dc=pi-farm,dc=de - LDAP_BASE_DN=dc=YOUR-DOMAIN,dc=LOC
- LDAP_BIND_DN=cn=admin,dc=pi-farm,dc=de - LDAP_BIND_DN=cn=YOUR-BIND-USER,dc=YOUR-DOMAIN,dc=LOC
- LDAP_BIND_PASSWORD=YOUR-SUPER-SECRET-PASSWORD - LDAP_BIND_PASSWORD=YOUR-SUPER-SECRET-BIND-PASSWORD
- LDAP_SUDO_GROUP=sudo_users - LDAP_SUDO_GROUP=YOUR-SUDO-USERS-GROUP
volumes: volumes:
- ./home:/home - ./YOUR-PERSISTENT-FOLDER:/home