Bot Updating Documentation

pull/40/head
LinuxServer-CI 2021-06-08 13:50:43 -04:00
rodzic 075b0be800
commit 4487a4bd5d
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -59,6 +59,7 @@ services:
- MAXLINES=32 #optional
- MAXCLIENTS=4096 #optional
- LOGFILE=false #optional
- BINDFAMILY= #optional
volumes:
- /path/to/appdata:/config #optional
ports:
@ -78,6 +79,7 @@ docker run -d \
-e MAXLINES=32 `#optional` \
-e MAXCLIENTS=4096 `#optional` \
-e LOGFILE=false `#optional` \
-e BINDFAMILY= `#optional` \
-p 22:2222 \
-v /path/to/appdata:/config `#optional` \
--restart unless-stopped \
@ -105,6 +107,7 @@ Docker images are configured using parameters passed at runtime (such as those a
| `MAXLINES=32` | The length of each line is randomized. This controls the maximum length of each line. Shorter lines may keep clients on for longer if they give up after a certain number of bytes. |
| `MAXCLIENTS=4096` | Maximum number of connections to accept at a time. Connections beyond this are not immediately rejected, but will wait in the queue. |
| `LOGFILE=false` | By default, the app logs to container log. If this is set to `true`, the log will be output to file under `/config/logs/endlessh` (`/config` needs to be mapped). |
| `BINDFAMILY=` | By default, the app binds to IPv4 and IPv6 addresses. Set it to `4` or `6` to bind to IPv4 only or IPv6 only, respectively. Leave blank to bind to both. |
### Volume Mappings (`-v`)
@ -161,4 +164,5 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
## Versions
* **08.06.21:** - Add BINDFAMILY option.
* **16.04.21:** - Initial Release.