Skip to content
This repository was archived by the owner on May 25, 2024. It is now read-only.

Commit 062ee8e

Browse files
authored
Merge pull request #8 from linuxserver/3.15
Rebase to Alpine 3.15
2 parents 529e415 + 19b994a commit 062ee8e

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/linuxserver/baseimage-alpine:3.13
1+
FROM ghcr.io/linuxserver/baseimage-alpine:3.15
22

33
# set version label
44
ARG BUILD_DATE

Dockerfile.aarch64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.13
1+
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.15
22

33
# set version label
44
ARG BUILD_DATE

Dockerfile.armhf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.13
1+
FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.15
22

33
# set version label
44
ARG BUILD_DATE

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
236236

237237
## Versions
238238

239+
* **16.04.22:** - Rebase to Alpine 3.15.
239240
* **07.10.21:** - Fix typo on MAXLINES var.
240241
* **08.06.21:** - Add BINDFAMILY option.
241242
* **16.04.21:** - Initial Release.

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ app_setup_block: |
5454
5555
# changelog
5656
changelogs:
57+
- { date: "16.04.22:", desc: "Rebase to Alpine 3.15." }
5758
- { date: "07.10.21:", desc: "Fix typo on MAXLINES var." }
5859
- { date: "08.06.21:", desc: "Add BINDFAMILY option." }
5960
- { date: "16.04.21:", desc: "Initial Release." }

root/etc/services.d/endlessh/run

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ export \
44
MSDELAY=${MSDELAY:-10000} \
55
MAXLINES=${MAXLINES:-32} \
66
MAXCLIENTS=${MAXCLIENTS:-4096} \
7-
BINDFAMILY=$(test v4 = v${BINDFAMILY} -o v6 = v${BINDFAMILY} && echo -${BINDFAMILY})
7+
BINDFAMILY=$(test v4 = v"${BINDFAMILY}" -o v6 = v"${BINDFAMILY}" && echo -"${BINDFAMILY}")
88

99
exec 2>&1 \
1010
s6-setuidgid abc \
1111
/app/endlessh/endlessh \
1212
-v \
13-
-d ${MSDELAY} \
14-
-l ${MAXLINES} \
15-
-m ${MAXCLIENTS} \
13+
-d "${MSDELAY}" \
14+
-l "${MAXLINES}" \
15+
-m "${MAXCLIENTS}" \
1616
-p 2222 \
1717
${BINDFAMILY}

0 commit comments

Comments
 (0)