Skip to content

Commit 542c653

Browse files
committed
Rebase to noble
1 parent 300986d commit 542c653

File tree

7 files changed

+22
-30
lines changed

7 files changed

+22
-30
lines changed

.github/workflows/external_trigger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
echo "**** External trigger running off of master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER\". ****"
2121
echo "External trigger running off of master branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_JELLYFIN_MASTER\`" >> $GITHUB_STEP_SUMMARY
2222
echo "**** Retrieving external version ****"
23-
EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}')
23+
EXT_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}')
2424
if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then
2525
echo "**** Can't retrieve external version, exiting ****"
2626
FAILURE_REASON="Can't retrieve external version for jellyfin branch master"

Dockerfile

Lines changed: 4 additions & 4 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-ubuntu:jammy
3+
FROM ghcr.io/linuxserver/baseimage-ubuntu:noble
44

55
# set version label
66
ARG BUILD_DATE
@@ -16,9 +16,9 @@ ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility"
1616
RUN \
1717
echo "**** install jellyfin *****" && \
1818
curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | gpg --dearmor | tee /usr/share/keyrings/jellyfin.gpg >/dev/null && \
19-
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \
19+
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu noble main' > /etc/apt/sources.list.d/jellyfin.list && \
2020
if [ -z ${JELLYFIN_RELEASE+x} ]; then \
21-
JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \
21+
JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \
2222
fi && \
2323
apt-get update && \
2424
apt-get install -y --no-install-recommends \
@@ -33,7 +33,7 @@ RUN \
3333
/var/tmp/*
3434

3535
# add local files
36-
COPY root/ /
36+
COPY root/ /
3737

3838
# ports and volumes
3939
EXPOSE 8096 8920

Dockerfile.aarch64

Lines changed: 5 additions & 4 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-ubuntu:arm64v8-jammy
3+
FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-noble
44

55
# set version label
66
ARG BUILD_DATE
@@ -16,9 +16,9 @@ ENV NVIDIA_DRIVER_CAPABILITIES="compute,video,utility"
1616
RUN \
1717
echo "**** install jellyfin *****" && \
1818
curl -s https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | gpg --dearmor | tee /usr/share/keyrings/jellyfin.gpg >/dev/null && \
19-
echo 'deb [arch=arm64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu jammy main' > /etc/apt/sources.list.d/jellyfin.list && \
19+
echo 'deb [arch=arm64 signed-by=/usr/share/keyrings/jellyfin.gpg] https://repo.jellyfin.org/ubuntu noble main' > /etc/apt/sources.list.d/jellyfin.list && \
2020
if [ -z ${JELLYFIN_RELEASE+x} ]; then \
21-
JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \
21+
JELLYFIN_RELEASE=$(curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'); \
2222
fi && \
2323
apt-get update && \
2424
apt-get install -y --no-install-recommends \
@@ -28,14 +28,15 @@ RUN \
2828
libomxil-bellagio-bin \
2929
libraspberrypi0 \
3030
xmlstarlet && \
31+
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
3132
echo "**** cleanup ****" && \
3233
rm -rf \
3334
/tmp/* \
3435
/var/lib/apt/lists/* \
3536
/var/tmp/*
3637

3738
# add local files
38-
COPY root/ /
39+
COPY root/ /
3940

4041
# ports and volumes
4142
EXPOSE 8096 8920

Jenkinsfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ pipeline {
3131
CI_PORT='8096'
3232
CI_SSL='false'
3333
CI_DELAY='120'
34-
CI_DOCKERENV='TZ=US/Pacific'
35-
CI_AUTH='user:password'
34+
CI_DOCKERENV=''
35+
CI_AUTH=''
3636
CI_WEBPATH=''
3737
}
3838
stages {
@@ -115,7 +115,7 @@ pipeline {
115115
steps{
116116
script{
117117
env.EXT_RELEASE = sh(
118-
script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}' ''',
118+
script: ''' curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}' ''',
119119
returnStdout: true).trim()
120120
env.RELEASE_LINK = 'custom_command'
121121
}

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ services:
146146
- TZ=Etc/UTC
147147
- JELLYFIN_PublishedServerUrl=192.168.0.5 #optional
148148
volumes:
149-
- /path/to/library:/config
149+
- /path/to/jellyfin/library:/config
150150
- /path/to/tvseries:/data/tvshows
151151
- /path/to/movies:/data/movies
152152
ports:
@@ -170,7 +170,7 @@ docker run -d \
170170
-p 8920:8920 `#optional` \
171171
-p 7359:7359/udp `#optional` \
172172
-p 1900:1900/udp `#optional` \
173-
-v /path/to/library:/config \
173+
-v /path/to/jellyfin/library:/config \
174174
-v /path/to/tvseries:/data/tvshows \
175175
-v /path/to/movies:/data/movies \
176176
--restart unless-stopped \
@@ -371,6 +371,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
371371

372372
## Versions
373373

374+
* **13.08.24:** - Rebase to Ubuntu Noble.
374375
* **01.05.24:** - Increase verbosity of device permissions fixing.
375376
* **12.02.24:** - Use universal hardware acceleration blurb.
376377
* **12.09.23:** - Take ownership of plugin directories.

jenkins-vars.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# jenkins variables
44
project_name: docker-jellyfin
55
external_type: na
6-
custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/jammy/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'"
6+
custom_version_command: "curl -sX GET https://repo.jellyfin.org/ubuntu/dists/noble/main/binary-amd64/Packages |grep -A 7 -m 1 'Package: jellyfin-server' | awk -F ': ' '/Version/{print $2;exit}'"
77
release_type: stable
88
release_tag: latest
99
ls_branch: master
@@ -22,8 +22,8 @@ repo_vars:
2222
- CI_PORT='8096'
2323
- CI_SSL='false'
2424
- CI_DELAY='120'
25-
- CI_DOCKERENV='TZ=US/Pacific'
26-
- CI_AUTH='user:password'
25+
- CI_DOCKERENV=''
26+
- CI_AUTH=''
2727
- CI_WEBPATH=''
2828
sponsor_links:
2929
- { name: "Jellyfin", url: "https://opencollective.com/jellyfin" }

readme-vars.yml

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# project information
44
project_name: jellyfin
55
project_url: "https://github.com/jellyfin/jellyfin"
6-
project_logo: "https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/banner-logo-solid.svg?sanitize=true"
6+
project_logo: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jellyfin-logo.png"
77
project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}"
88
project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support. There are no strings attached, no premium licenses or features, and no hidden agendas: just a team who want to build something better and work together to achieve it."
99
# supported architectures
@@ -20,7 +20,7 @@ common_param_env_vars_enabled: true #PGID, PUID, etc
2020
param_container_name: "{{ project_name }}"
2121
param_usage_include_vols: true
2222
param_volumes:
23-
- {vol_path: "/config", vol_host_path: "/path/to/library", desc: "Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.*"}
23+
- {vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/library", desc: "Jellyfin data storage location. *This can grow very large, 50gb+ is likely for a large collection.*"}
2424
- {vol_path: "/data/tvshows", vol_host_path: "/path/to/tvseries", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc."}
2525
- {vol_path: "/data/movies", vol_host_path: "/path/to/movies", desc: "Media goes here. Add as many as needed e.g. `/data/movies`, `/data/tv`, etc."}
2626
param_usage_include_ports: true
@@ -31,17 +31,6 @@ param_usage_include_env: true
3131
opt_param_usage_include_env: true
3232
opt_param_env_vars:
3333
- {env_var: "JELLYFIN_PublishedServerUrl", env_value: "192.168.0.5", desc: "Set the autodiscovery response domain or IP address."}
34-
opt_param_usage_include_vols: false
35-
opt_param_volumes:
36-
- {vol_path: "/opt/vc/lib", vol_host_path: "/opt/vc/lib", desc: "Path for Raspberry Pi OpenMAX libs *optional*."}
37-
opt_param_device_map: false
38-
opt_param_devices:
39-
- {device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi)."}
40-
- {device_path: "/dev/vcsm", device_host_path: "/dev/vcsm", desc: "Only needed if you want to use your Raspberry Pi MMAL video decoding (Enabled as OpenMax H264 decode in gui settings)."}
41-
- {device_path: "/dev/vchiq", device_host_path: "/dev/vchiq", desc: "Only needed if you want to use your Raspberry Pi OpenMax video encoding."}
42-
- {device_path: "/dev/video10", device_host_path: "/dev/video10", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding."}
43-
- {device_path: "/dev/video11", device_host_path: "/dev/video11", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding."}
44-
- {device_path: "/dev/video12", device_host_path: "/dev/video12", desc: "Only needed if you want to use your Raspberry Pi V4L2 video encoding."}
4534
opt_param_usage_include_ports: true
4635
opt_param_ports:
4736
- {external_port: "8920", internal_port: "8920", port_desc: "Optional - Https webUI (you need to set up your own certificate)."}
@@ -102,6 +91,7 @@ readme_hwaccel: true
10291
unraid_template_sync: false
10392
# changelog
10493
changelogs:
94+
- {date: "13.08.24:", desc: "Rebase to Ubuntu Noble."}
10595
- {date: "01.05.24:", desc: "Increase verbosity of device permissions fixing."}
10696
- {date: "12.02.24:", desc: "Use universal hardware acceleration blurb."}
10797
- {date: "12.09.23:", desc: "Take ownership of plugin directories."}

0 commit comments

Comments
 (0)