feat:更新jellyfin 10.8.10

This commit is contained in:
okxlin 2023-06-04 23:03:55 +08:00
parent 3c5f0151c0
commit bcc5997c2b
6 changed files with 48 additions and 0 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"

24
jellyfin/10.8.10/data.yml Normal file
View File

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

0
jellyfin/10.8.10/data/cache/.gitkeep vendored Normal file
View File

View File

View File

View File

@ -0,0 +1,20 @@
version: "3"
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"
image: "jellyfin/jellyfin:10.8.10"
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true