diff --git a/apps/jellyfin/10.10.3/data.yml b/apps/jellyfin/10.10.3/data.yml new file mode 100644 index 0000000..dfe440e --- /dev/null +++ b/apps/jellyfin/10.10.3/data.yml @@ -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 diff --git a/apps/jellyfin/10.10.3/docker-compose.yml b/apps/jellyfin/10.10.3/docker-compose.yml new file mode 100644 index 0000000..15e82fb --- /dev/null +++ b/apps/jellyfin/10.10.3/docker-compose.yml @@ -0,0 +1,21 @@ +networks: + chish-network: + external: true +services: + jellyfin: + container_name: ${CONTAINER_NAME} + restart: always + networks: + - chish-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.10.3" + labels: + createdBy: "Apps" diff --git a/apps/jellyfin/data.yml b/apps/jellyfin/data.yml new file mode 100644 index 0000000..97ea99d --- /dev/null +++ b/apps/jellyfin/data.yml @@ -0,0 +1,19 @@ +name: Jellyfin +tags: + - 多媒体 +title: 多媒体应用程序软件套装 +description: 多媒体应用程序软件套装 +additionalProperties: + key: jellyfin + name: Jellyfin + tags: + - Media + shortDescZh: 多媒体应用程序软件套装 + shortDescEn: Multimedia application software suite + type: tool + crossVersionUpdate: true + limit: 0 + recommend: 0 + website: https://jellyfin.org/ + github: https://github.com/jellyfin/jellyfin + document: https://jellyfin.org/docs/ diff --git a/apps/jellyfin/logo.png b/apps/jellyfin/logo.png new file mode 100644 index 0000000..1cbd0c3 Binary files /dev/null and b/apps/jellyfin/logo.png differ