feat:添加nyanmisaka-jellyfin到列表

This commit is contained in:
okxlin 2023-08-11 00:40:57 +08:00
parent 3803673f10
commit 600d0a281e
3 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"

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

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: "nyanmisaka/jellyfin:latest"
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true