Rename folder

This commit is contained in:
okxlin 2023-06-05 00:02:54 +08:00
parent fa5f7b7b29
commit 843eeec515
8 changed files with 0 additions and 83 deletions

View File

@ -1,17 +0,0 @@
additionalProperties:
formFields:
- default: 9876
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: WebUI Port
labelZh: 网页端口
required: true
rule: paramPort
type: number
- default: ./data
edit: true
envKey: DATA_PATH
labelEn: Data folder path
labelZh: 数据文件夹路径
required: true
type: text

View File

@ -1,18 +0,0 @@
version: "3"
services:
ddns-go:
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:9876"
volumes:
- "${DATA_PATH}:/root"
image: jeessy/ddns-go:v5.3.1
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true

View File

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

View File

@ -1,24 +0,0 @@
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

View File

@ -1,20 +0,0 @@
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.9"
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true