mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00
readme: Update to reflect new stable user env settings
This commit is contained in:
parent
b3f64c6efe
commit
a2dfca0e37
38
README.md
38
README.md
@ -97,8 +97,11 @@ variables `LLDAP_JWT_SECRET_FILE` or `LLDAP_LDAP_USER_PASS_FILE`, and the file
|
|||||||
contents are loaded into the respective configuration parameters. Note that
|
contents are loaded into the respective configuration parameters. Note that
|
||||||
`_FILE` variables take precedence.
|
`_FILE` variables take precedence.
|
||||||
|
|
||||||
Example for docker compose for `:stable` tag:
|
Example for docker compose:
|
||||||
* When defined with `user: ##:##` , ensure `/data` directory had permission for the defined user, else `1000:1000` used.
|
* You can use either the `:latest` tag image or `:stable` as used in this example.
|
||||||
|
* `:latest` tag image contains recently pushed code or feature tests, in which some instability can be expected.
|
||||||
|
* If `UID` and `GID` no defined LLDAP will use default `UID` and `GID` number `1000`
|
||||||
|
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
version: '3'
|
version: '3'
|
||||||
@ -110,37 +113,6 @@ volumes:
|
|||||||
services:
|
services:
|
||||||
lldap:
|
lldap:
|
||||||
image: nitnelave/lldap:stable
|
image: nitnelave/lldap:stable
|
||||||
# Change this to the user:group you want.
|
|
||||||
user: "33:33"
|
|
||||||
ports:
|
|
||||||
# For LDAP
|
|
||||||
- "3890:3890"
|
|
||||||
# For the web front-end
|
|
||||||
- "17170:17170"
|
|
||||||
volumes:
|
|
||||||
- "lldap_data:/data"
|
|
||||||
# Alternatively, you can mount a local folder
|
|
||||||
# - "./lldap_data:/data"
|
|
||||||
environment:
|
|
||||||
- LLDAP_JWT_SECRET=REPLACE_WITH_RANDOM
|
|
||||||
- LLDAP_LDAP_USER_PASS=REPLACE_WITH_PASSWORD
|
|
||||||
- LLDAP_LDAP_BASE_DN=dc=example,dc=com
|
|
||||||
```
|
|
||||||
|
|
||||||
Example for docker compose for `:latest` tag:
|
|
||||||
* `:latest` tag image contain recent pushed codes or feature test, breaks is expected.
|
|
||||||
* If `UID` and `GID` no defined LLDAP will use default `UID` and `GID` number `1000`
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
version: '3'
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
lldap_data:
|
|
||||||
driver: local
|
|
||||||
|
|
||||||
services:
|
|
||||||
lldap:
|
|
||||||
image: nitnelave/lldap:latest
|
|
||||||
ports:
|
ports:
|
||||||
# For LDAP
|
# For LDAP
|
||||||
- "3890:3890"
|
- "3890:3890"
|
||||||
|
Loading…
Reference in New Issue
Block a user