From ea68f564e88a7e177f4ced23419d76ddc748b6e4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 8 Jun 2021 13:50:43 -0400 Subject: [PATCH] Bot Updating Documentation --- images/docker-endlessh.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/images/docker-endlessh.md b/images/docker-endlessh.md index e22de9bd6e..3517c87495 100755 --- a/images/docker-endlessh.md +++ b/images/docker-endlessh.md @@ -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.