mirror of
https://github.com/okxlin/appstore.git
synced 2026-02-25 20:37:49 +08:00
feat:添加nyanmisaka-jellyfin到列表
This commit is contained in:
parent
3803673f10
commit
600d0a281e
4
apps/jellyfin/nyanmisaka-latest/.env.sample
Normal file
4
apps/jellyfin/nyanmisaka-latest/.env.sample
Normal file
@ -0,0 +1,4 @@
|
||||
CONTAINER_NAME=jellyfin
|
||||
PANEL_APP_PORT_HTTP=8096
|
||||
CACHE_FOLDER_PATH="./data/media"
|
||||
MEDIA_FOLDER_PATH="./data/cache"
|
||||
24
apps/jellyfin/nyanmisaka-latest/data.yml
Normal file
24
apps/jellyfin/nyanmisaka-latest/data.yml
Normal 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
|
||||
20
apps/jellyfin/nyanmisaka-latest/docker-compose.yml
Normal file
20
apps/jellyfin/nyanmisaka-latest/docker-compose.yml
Normal 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
|
||||
Loading…
Reference in New Issue
Block a user