mirror of
https://github.com/lldap/lldap.git
synced 2026-04-25 16:25:55 +03:00
[PR #1331] [MERGED] docs: lldap password in docker install corrected #1263
Labels
No labels
backend
blocked
bug
cleanup
dependencies
docker
documentation
duplicate
enhancement
enhancement
frontend
github_actions
good first issue
help wanted
help wanted
integration
invalid
ldap
pull-request
question
rust
rust
tests
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/lldap-lldap#1263
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/lldap/lldap/pull/1331
Author: @NassimBounouas
Created: 10/18/2025
Status: ✅ Merged
Merged: 10/18/2025
Merged by: @nitnelave
Base:
main← Head:fix/1128-docker-install-password-documentation📝 Commits (1)
459cb92docs: lldap password in docker install corrected📊 Changes
1 file changed (+1 additions, -1 deletions)
View changed files
📝
docs/install.md(+1 -1)📄 Description
Summary
This PR fixes misleading Docker Compose example for
LLDAP_LDAP_USER_PASSas reported by @garylavayou within #1128Description
In the documentation’s Docker Compose example, the environment variable:
is misleading.
Docker Compose treats
$wordas a variable reference, which is undefined and thus replaced by an empty string.As a result, the actual password becomes
adminPas, while users will likely attempt to log in withadminPas$word, causing authentication failures.What this PR does
This PR updates the example to clarify how to escape
$in Compose environment variables:This avoids confusion and improves the onboarding experience for new users setting up LLDAP via Docker Compose.
Why this matters
New users following the documentation exactly will encounter login errors when trying to use
adminPas$word.By explicitly showing how to escape
$, the documentation becomes clearer and reduces setup friction.🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.