Skip to content

Commit 5691bce

Browse files
authored
Merge pull request #59 from linuxserver/master-3.20
Rebase to 3.20 (master)
2 parents 321194a + 5caa7b7 commit 5691bce

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM ghcr.io/linuxserver/baseimage-alpine:3.19
3+
FROM ghcr.io/linuxserver/baseimage-alpine:3.20
44

55
# set version label
66
ARG BUILD_DATE
@@ -41,6 +41,7 @@ RUN \
4141
NODE_ENV=production yarn build && \
4242
yarn link && \
4343
yarn --non-interactive cache clean && \
44+
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
4445
echo "**** cleanup ****" && \
4546
apk del --purge \
4647
build-dependencies && \

Dockerfile.aarch64

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.19
3+
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.20
44

55
# set version label
66
ARG BUILD_DATE
@@ -41,6 +41,7 @@ RUN \
4141
NODE_ENV=production yarn build && \
4242
yarn link && \
4343
yarn --non-interactive cache clean && \
44+
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
4445
echo "**** cleanup ****" && \
4546
apk del --purge \
4647
build-dependencies && \

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ pipeline {
3434
CI_PORT='9000'
3535
CI_SSL='false'
3636
CI_DELAY='120'
37-
CI_DOCKERENV='TZ=US/Pacific'
38-
CI_AUTH='user:password'
37+
CI_DOCKERENV=''
38+
CI_AUTH=''
3939
CI_WEBPATH=''
4040
}
4141
stages {

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ This image provides various versions that are available via tags. Please read th
9191

9292
* To log in to the application, browse to `http://<hostip>:9000`
9393

94-
* You should now be prompted for a username and password on the webinterface.
94+
* You should now be prompted for a username and password on the web interface.
9595

9696
* Once logged in, you can add an IRC network. Some defaults are preset for Freenode
9797

@@ -305,6 +305,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
305305

306306
## Versions
307307

308+
* **06.06.24:** - Rebase to Alpine 3.20.
308309
* **23.12.23:** - Rebase to Alpine 3.19.
309310
* **25.05.23:** - Rebase to Alpine 3.18, deprecate armhf.
310311
* **18.12.22:** - Rebasing master to alpine 3.17.

jenkins-vars.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ external_type: github_stable
66
release_type: stable
77
release_tag: latest
88
ls_branch: master
9-
build_armhf: false
109
repo_vars:
1110
- EXT_GIT_BRANCH = 'master'
1211
- EXT_USER = 'thelounge'
@@ -25,6 +24,6 @@ repo_vars:
2524
- CI_PORT='9000'
2625
- CI_SSL='false'
2726
- CI_DELAY='120'
28-
- CI_DOCKERENV='TZ=US/Pacific'
29-
- CI_AUTH='user:password'
27+
- CI_DOCKERENV=''
28+
- CI_AUTH=''
3029
- CI_WEBPATH=''

readme-vars.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ development_versions_items:
2222
# container parameters
2323
common_param_env_vars_enabled: true #PGID, PUID, etc, you can set it to 'optional'
2424
param_container_name: "{{ project_name }}"
25-
param_usage_include_env: true
26-
param_env_vars:
27-
- { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." }
2825
param_usage_include_vols: true
2926
param_volumes:
3027
- { vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/config", desc: "Persistent config files" }
@@ -36,7 +33,7 @@ param_ports:
3633
app_setup_block_enabled: true
3734
app_setup_block: |
3835
* When the application first runs, it will populate its /config
39-
36+
4037
* Stop the container
4138
4239
* Now from the host, edit `/config/config.js`, wherever you've mapped it
@@ -50,20 +47,21 @@ app_setup_block: |
5047
* For each user, run the command
5148
5249
* `docker exec -it thelounge s6-setuidgid abc thelounge add <user>`
53-
50+
5451
* You will be prompted to enter a password that will not be echoed.
55-
52+
5653
* Saving logs to disk is the default, this consumes more space but allows scrollback.
5754
5855
* To log in to the application, browse to `http://<hostip>:9000`
5956
60-
* You should now be prompted for a username and password on the webinterface.
57+
* You should now be prompted for a username and password on the web interface.
6158
6259
* Once logged in, you can add an IRC network. Some defaults are preset for Freenode
6360
6461
# changelog
6562

6663
changelogs:
64+
- { date: "06.06.24:", desc: "Rebase to Alpine 3.20."}
6765
- { date: "23.12.23:", desc: "Rebase to Alpine 3.19."}
6866
- { date: "25.05.23:", desc: "Rebase to Alpine 3.18, deprecate armhf." }
6967
- { date: "18.12.22:", desc: "Rebasing master to alpine 3.17." }

0 commit comments

Comments
 (0)