Bot Updating Documentation

rootless
LinuxServer-CI 2023-02-11 07:55:16 +01:00
rodzic 4b7a4f3ba6
commit 061910eda7
1 zmienionych plików z 2 dodań i 4 usunięć

Wyświetl plik

@ -31,7 +31,7 @@ The architectures supported by this image are:
| :----: | :----: | ---- |
| x86-64 | ✅ | amd64-\<version tag\> |
| arm64 | ✅ | arm64v8-\<version tag\> |
| armhf| ✅ | arm32v7-\<version tag\> |
| armhf | ✅ | arm32v7-\<version tag\> |
## Application Setup
@ -54,7 +54,6 @@ services:
image: lscr.io/linuxserver/ldap-auth:latest
container_name: ldap-auth
environment:
- TZ=Europe/London
- FERNETKEY= #optional
- CERTFILE= #optional
- KEYFILE= #optional
@ -69,7 +68,6 @@ services:
```bash
docker run -d \
--name=ldap-auth \
-e TZ=Europe/London \
-e FERNETKEY= `#optional` \
-e CERTFILE= `#optional` \
-e KEYFILE= `#optional` \
@ -77,6 +75,7 @@ docker run -d \
-p 9000:9000 \
--restart unless-stopped \
lscr.io/linuxserver/ldap-auth:latest
```
## Parameters
@ -94,7 +93,6 @@ Docker images are configured using parameters passed at runtime (such as those a
| Env | Function |
| :----: | --- |
| `TZ=Europe/London` | Specify a timezone to use EG Europe/London |
| `FERNETKEY=` | Optionally define a custom fernet key, has to be base64-encoded 32-byte (only needed if container is frequently recreated, or if using multi-node setups, invalidating previous authentications) |
| `CERTFILE=` | Point this to a certificate file to enable HTTP over SSL (HTTPS) for the ldap auth daemon |
| `KEYFILE=` | Point this to the private key file, matching the certificate file referred to in CERTFILE |