mirror of
https://github.com/arch3rPro/1Panel-Appstore.git
synced 2026-05-14 14:11:38 +08:00
feat(lxserver): add LXServer app package
新增LXServer音乐同步服务器与Web播放器应用包,包含v1.9.1和latest两个版本的部署配置、应用信息说明文档以及logo资源。
This commit is contained in:
@@ -0,0 +1,73 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "9527"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: Service Port
|
||||
labelZh: 服务端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
label:
|
||||
en: Service Port
|
||||
zh: 服务端口
|
||||
- default: "123456"
|
||||
edit: true
|
||||
envKey: FRONTEND_PASSWORD
|
||||
labelEn: Admin Password
|
||||
labelZh: 管理后台密码
|
||||
required: false
|
||||
rule: paramCommon
|
||||
type: password
|
||||
label:
|
||||
en: Admin Password
|
||||
zh: 管理后台密码
|
||||
- default: "false"
|
||||
edit: true
|
||||
envKey: ENABLE_WEBPLAYER_AUTH
|
||||
labelEn: Enable Player Auth
|
||||
labelZh: 启用播放器访问密码
|
||||
required: false
|
||||
rule: paramCommon
|
||||
type: select
|
||||
values:
|
||||
- label: "True"
|
||||
value: "true"
|
||||
- label: "False"
|
||||
value: "false"
|
||||
label:
|
||||
en: Enable Player Auth
|
||||
zh: 启用播放器访问密码
|
||||
- default: "123456"
|
||||
edit: true
|
||||
envKey: WEBPLAYER_PASSWORD
|
||||
labelEn: Player Password
|
||||
labelZh: 播放器访问密码
|
||||
required: false
|
||||
rule: paramCommon
|
||||
type: password
|
||||
label:
|
||||
en: Player Password
|
||||
zh: 播放器访问密码
|
||||
- default: "/music"
|
||||
edit: true
|
||||
envKey: PLAYER_PATH
|
||||
labelEn: Player Path
|
||||
labelZh: 播放器访问路径
|
||||
required: false
|
||||
rule: paramCommon
|
||||
type: text
|
||||
label:
|
||||
en: Player Path
|
||||
zh: 播放器访问路径
|
||||
- default: "Asia/Shanghai"
|
||||
edit: true
|
||||
envKey: TZ
|
||||
labelEn: Time Zone
|
||||
labelZh: 时区
|
||||
required: true
|
||||
rule: paramCommon
|
||||
type: text
|
||||
label:
|
||||
en: Time Zone
|
||||
zh: 时区
|
||||
@@ -0,0 +1,28 @@
|
||||
services:
|
||||
lxserver:
|
||||
image: xcq0607/lxserver:v1.9.1
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTP}:9527"
|
||||
volumes:
|
||||
- ./data:/server/data
|
||||
- ./logs:/server/logs
|
||||
- ./cache:/server/cache
|
||||
- ./music:/server/music
|
||||
environment:
|
||||
- TZ=Asia/Shanghai
|
||||
- NODE_ENV=production
|
||||
- PORT=9527
|
||||
- FRONTEND_PASSWORD=${FRONTEND_PASSWORD}
|
||||
- ENABLE_WEBPLAYER_AUTH=${ENABLE_WEBPLAYER_AUTH}
|
||||
- WEBPLAYER_PASSWORD=${WEBPLAYER_PASSWORD}
|
||||
- PLAYER_PATH=${PLAYER_PATH}
|
||||
- TZ=${TZ}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
Reference in New Issue
Block a user