From 38b1dd0f4d7b02a2fa1c60fa1763e2426c199608 Mon Sep 17 00:00:00 2001 From: Tim Basten Date: Fri, 6 Mar 2026 01:42:03 +0000 Subject: [PATCH] Add phpLDAPadmin service for LDAP user management Accessible at localhost:8085 (configurable via FORWARD_PHPLDAPADMIN_PORT). Login with cn=admin,dc=travel,dc=local and the LDAP admin password. --- compose.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/compose.yaml b/compose.yaml index adbaf90..a38f8f9 100644 --- a/compose.yaml +++ b/compose.yaml @@ -115,6 +115,17 @@ services: - '${LDAP_ADMIN_PASSWORD:-adminpassword}' retries: 3 timeout: 5s + phpldapadmin: + image: 'osixia/phpldapadmin:latest' + ports: + - '${FORWARD_PHPLDAPADMIN_PORT:-8085}:80' + environment: + PHPLDAPADMIN_LDAP_HOSTS: openldap + PHPLDAPADMIN_HTTPS: 'false' + networks: + - sail + depends_on: + - openldap networks: sail: driver: bridge -- 2.49.1