Skip to content

Commit 25f3551

Browse files
committed
Rebase to 3.20
1 parent 096f3b7 commit 25f3551

6 files changed

Lines changed: 19 additions & 12 deletions

File tree

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
FROM ghcr.io/linuxserver/unrar:latest as unrar
44

5-
FROM ghcr.io/linuxserver/baseimage-alpine:3.19
5+
FROM ghcr.io/linuxserver/baseimage-alpine:3.20
66

77
# set version label
88
ARG BUILD_DATE
@@ -24,6 +24,7 @@ RUN \
2424
py3-chardet \
2525
py3-idna \
2626
py3-openssl \
27+
py3-setuptools \
2728
py3-urllib3 \
2829
python3 && \
2930
echo "**** install app ****" && \
@@ -38,6 +39,7 @@ RUN \
3839
"https://github.com/pymedusa/Medusa/archive/${MEDUSA_RELEASE}.tar.gz" && \
3940
tar xf /tmp/medusa.tar.gz -C \
4041
/app/medusa --strip-components=1 && \
42+
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
4143
echo "**** clean up ****" && \
4244
apk del --purge \
4345
build-dependencies && \

Dockerfile.aarch64

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
FROM ghcr.io/linuxserver/unrar:arm64v8-latest as unrar
44

5-
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.19
5+
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.20
66

77
# set version label
88
ARG BUILD_DATE
@@ -24,6 +24,7 @@ RUN \
2424
py3-chardet \
2525
py3-idna \
2626
py3-openssl \
27+
py3-setuptools \
2728
py3-urllib3 \
2829
python3 && \
2930
echo "**** install app ****" && \
@@ -38,6 +39,7 @@ RUN \
3839
"https://github.com/pymedusa/Medusa/archive/${MEDUSA_RELEASE}.tar.gz" && \
3940
tar xf /tmp/medusa.tar.gz -C \
4041
/app/medusa --strip-components=1 && \
42+
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
4143
echo "**** clean up ****" && \
4244
apk del --purge \
4345
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='8081'
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: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ The architectures supported by this image are:
5959

6060
## Application Setup
6161

62-
Web interface is at `<your ip>:8081`.
62+
"Web interface is at `<your ip>:8081`.
6363

64-
Set paths for downloads, tv-shows to match docker mappings via the webui, for more information check out [Medusa](https://pymedusa.com/).
64+
Set paths for downloads, tv-shows to match docker mappings via the webui, for more information check out [Medusa](https://pymedusa.com/)."
6565

6666
## Usage
6767

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

280280
## Versions
281281

282+
* **24.06.24:** - Rebase to Alpine 3.20.
282283
* **08.01.24:** - Rebase to Alpine 3.19.
283284
* **07.10.23:** - Install unrar from [linuxserver repo](https://github.com/linuxserver/docker-unrar).
284285
* **10.08.23:** - Bump unrar to 6.2.10.

jenkins-vars.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ repo_vars:
2424
- CI_PORT='8081'
2525
- CI_SSL='false'
2626
- CI_DELAY='120'
27-
- CI_DOCKERENV='TZ=US/Pacific'
28-
- CI_AUTH='user:password'
27+
- CI_DOCKERENV=''
28+
- CI_AUTH=''
2929
- CI_WEBPATH=''

readme-vars.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,16 @@ param_volumes:
1818
param_usage_include_ports: true
1919
param_ports:
2020
- {external_port: "8081", internal_port: "8081", port_desc: "The port for the Medusa webui"}
21-
param_usage_include_env: true
22-
param_env_vars:
23-
- {env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use e.g. Europe/London"}
2421
# application setup block
2522
app_setup_block_enabled: true
26-
app_setup_block: "Web interface is at `<your ip>:8081`. \n\nSet paths for downloads, tv-shows to match docker mappings via the webui, for more information check out [{{ project_name|capitalize }}]({{ project_url }}).\n"
23+
app_setup_block: |
24+
"Web interface is at `<your ip>:8081`.
25+
26+
Set paths for downloads, tv-shows to match docker mappings via the webui, for more information check out [{{ project_name|capitalize }}]({{ project_url }})."
27+
2728
# changelog
2829
changelogs:
30+
- {date: "24.06.24:", desc: "Rebase to Alpine 3.20."}
2931
- {date: "08.01.24:", desc: "Rebase to Alpine 3.19."}
3032
- {date: "07.10.23:", desc: "Install unrar from [linuxserver repo](https://github.com/linuxserver/docker-unrar)."}
3133
- {date: "10.08.23:", desc: "Bump unrar to 6.2.10."}

0 commit comments

Comments
 (0)