You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 25, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: .github/workflows/greetings.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,6 @@ jobs:
8
8
steps:
9
9
- uses: actions/first-interaction@v1
10
10
with:
11
-
issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-endlessh/blob/main/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-endlessh/blob/main/.github/ISSUE_TEMPLATE/issue.feature.yml) issue templates!'
11
+
issue-message: 'Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.'
12
12
pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-endlessh/blob/main/.github/PULL_REQUEST_TEMPLATE.md)!'
Copy file name to clipboardExpand all lines: README.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ The architectures supported by this image are:
56
56
| :----: | :----: | ---- |
57
57
| x86-64 | ✅ | amd64-\<version tag\>|
58
58
| arm64 | ✅ | arm64v8-\<version tag\>|
59
-
| armhf| ✅ | arm32v7-\<version tag\>|
59
+
| armhf| ✅ | arm32v7-\<version tag\>|
60
60
61
61
## Application Setup
62
62
@@ -78,7 +78,7 @@ services:
78
78
environment:
79
79
- PUID=1000
80
80
- PGID=1000
81
-
- TZ=Europe/London
81
+
- TZ=Etc/UTC
82
82
- MSDELAY=10000 #optional
83
83
- MAXLINES=32 #optional
84
84
- MAXCLIENTS=4096 #optional
@@ -98,7 +98,7 @@ docker run -d \
98
98
--name=endlessh \
99
99
-e PUID=1000 \
100
100
-e PGID=1000 \
101
-
-e TZ=Europe/London \
101
+
-e TZ=Etc/UTC \
102
102
-e MSDELAY=10000 `#optional` \
103
103
-e MAXLINES=32 `#optional` \
104
104
-e MAXCLIENTS=4096 `#optional` \
@@ -108,6 +108,7 @@ docker run -d \
108
108
-v /path/to/appdata:/config `#optional` \
109
109
--restart unless-stopped \
110
110
lscr.io/linuxserver/endlessh:latest
111
+
111
112
```
112
113
113
114
## Parameters
@@ -119,7 +120,7 @@ Container images are configured using parameters passed at runtime (such as thos
119
120
|`-p 2222`| ssh port |
120
121
|`-e PUID=1000`| for UserID - see below for explanation |
121
122
|`-e PGID=1000`| for GroupID - see below for explanation |
122
-
|`-e TZ=Europe/London`|Specify a timezone to use EG Europe/London|
123
+
|`-e TZ=Etc/UTC`|specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).|
123
124
|`-e MSDELAY=10000`| The endless banner is sent one line at a time. This is the delay in milliseconds between individual lines. |
124
125
|`-e 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. |
125
126
|`-e MAXCLIENTS=4096`| Maximum number of connections to accept at a time. Connections beyond this are not immediately rejected, but will wait in the queue. |
0 commit comments