Skip to content

Commit 25a3fc5

Browse files
authored
Merge pull request #58 from linuxserver/3.20
Rebase to 3.20
2 parents e1207bd + a340174 commit 25a3fc5

File tree

6 files changed

+15
-12
lines changed

6 files changed

+15
-12
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
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
@@ -47,7 +47,8 @@ RUN \
4747
pip install -U --no-cache-dir \
4848
pip \
4949
wheel && \
50-
pip install --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.19/ -r requirements.txt && \
50+
pip install --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.20/ -r requirements.txt && \
51+
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
5152
echo "**** cleanup ****" && \
5253
apk del --purge \
5354
build-dependencies && \

Dockerfile.aarch64

Lines changed: 3 additions & 2 deletions
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
@@ -47,7 +47,8 @@ RUN \
4747
pip install -U --no-cache-dir \
4848
pip \
4949
wheel && \
50-
pip install --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.19/ -r requirements.txt && \
50+
pip install --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.20/ -r requirements.txt && \
51+
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
5152
echo "**** cleanup ****" && \
5253
apk del --purge \
5354
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='8000'
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
@@ -157,7 +157,7 @@ Containers are configured using parameters passed at runtime (such as those abov
157157
| `-e DB_USER=` | Database user |
158158
| `-e DB_PASSWORD=` | Database password |
159159
| `-e DB_HOST=` | Database host (default: postgres) |
160-
| `-e DB_PORT=` | Database port (defaul: 5432) |
160+
| `-e DB_PORT=` | Database port (default: 5432) |
161161
| `-e REDIS_HOST=` | Redis host (default: redis) |
162162
| `-e REDIS_PORT=` | Redis port number (default: 6379) |
163163
| `-e REDIS_PASSWORD=` | Redis password (default: none) |
@@ -333,6 +333,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
333333

334334
## Versions
335335

336+
* **01.06.24:** - Rebase to Alpine 3.20.
336337
* **23.12.23:** - Rebase to Alpine 3.19.
337338
* **11.06.23:** - Rebase to Alpine 3.18, deprecate armhf.
338339
* **14.05.23:** - Build local docs on first run.

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 = 'netbox-community'
@@ -25,6 +24,6 @@ repo_vars:
2524
- CI_PORT='8000'
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: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ param_env_vars:
2828
- { env_var: "DB_USER", env_value: "", desc: "Database user" }
2929
- { env_var: "DB_PASSWORD", env_value: "", desc: "Database password" }
3030
- { env_var: "DB_HOST", env_value: "", desc: "Database host (default: postgres)" }
31-
- { env_var: "DB_PORT", env_value: "", desc: "Database port (defaul: 5432)" }
31+
- { env_var: "DB_PORT", env_value: "", desc: "Database port (default: 5432)" }
3232
- { env_var: "REDIS_HOST", env_value: "", desc: "Redis host (default: redis)" }
3333
- { env_var: "REDIS_PORT", env_value: "", desc: "Redis port number (default: 6379)" }
3434
- { env_var: "REDIS_PASSWORD", env_value: "", desc: "Redis password (default: none)" }
@@ -53,11 +53,12 @@ param_ports:
5353
app_setup_block_enabled: true
5454
app_setup_block: |
5555
Netbox requires a postgres database and a redis instance.
56-
56+
5757
Access the WebUI at <your-ip>:8000. For more information, check out [NetBox](https://github.com/netbox-community/netbox).
5858
5959
# changelog
6060
changelogs:
61+
- { date: "01.06.24:", desc: "Rebase to Alpine 3.20."}
6162
- { date: "23.12.23:", desc: "Rebase to Alpine 3.19."}
6263
- { date: "11.06.23:", desc: "Rebase to Alpine 3.18, deprecate armhf." }
6364
- { date: "14.05.23:", desc: "Build local docs on first run." }

0 commit comments

Comments
 (0)