1
0

chore(deps): update jellyfin/jellyfin docker tag to v10.11.6 (#3546)

This commit is contained in:
renovate[bot]
2026-01-19 02:29:03 +00:00
committed by GitHub
parent 8979a7cd34
commit 2e47ae3074
3 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,4 @@
CONTAINER_NAME=jellyfin
PANEL_APP_PORT_HTTP=8096
CACHE_FOLDER_PATH="./data/media"
MEDIA_FOLDER_PATH="./data/cache"

View File

@@ -0,0 +1,33 @@
additionalProperties:
formFields:
- default: 8096
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: WebUI Port
labelZh: 网页端口
label:
en: WebUI Port
zh: 网页端口
required: true
rule: paramPort
type: number
- default: ./data/media
edit: true
envKey: MEDIA_FOLDER_PATH
labelEn: Media folder path
labelZh: 媒体文件夹路径
label:
en: Media folder path
zh: 媒体文件夹路径
required: true
type: text
- default: ./data/cache
edit: true
envKey: CACHE_FOLDER_PATH
labelEn: Cache folder path
labelZh: 缓存文件夹路径
label:
en: Cache folder path
zh: 缓存文件夹路径
required: true
type: text

View File

@@ -0,0 +1,22 @@
services:
jellyfin:
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:8096"
volumes:
- "./data/config:/config"
- "${CACHE_FOLDER_PATH}:/cache"
- "${MEDIA_FOLDER_PATH}:/media/media"
devices:
- /dev/dri:/dev/dri # VAAPI/NVDEC/NVENC render nodes
#- /dev/vchiq:/dev/vchiq # MMAL/OMX on Raspberry Pi
image: "jellyfin/jellyfin:10.11.6"
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true