feat:更新music-tag-web
This commit is contained in:
parent
0605fc964d
commit
a2d6a856ec
|
|
@ -8,9 +8,10 @@ services:
|
||||||
ports:
|
ports:
|
||||||
- "${PANEL_APP_PORT_HTTP}:8001"
|
- "${PANEL_APP_PORT_HTTP}:8001"
|
||||||
volumes:
|
volumes:
|
||||||
- "${DATA_PATH}:/app/media:z"
|
- "${DATA_PATH}:/app/media:rw"
|
||||||
|
- "./config:/app/data"
|
||||||
command: /start
|
command: /start
|
||||||
image: registry.cn-hangzhou.aliyuncs.com/charles0519/music_tag_web:1.2.5
|
image: xhongc/music_tag_web:2.0.0
|
||||||
labels:
|
labels:
|
||||||
createdBy: "Apps"
|
createdBy: "Apps"
|
||||||
|
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
CONTAINER_NAME="music-tag-web"
|
||||||
|
PANEL_APP_PORT_HTTP="40129"
|
||||||
|
DATA_PATH="./data"
|
||||||
|
|
@ -0,0 +1,17 @@
|
||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: 40129
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelEn: Port
|
||||||
|
labelZh: 端口
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
||||||
|
- default: ./data
|
||||||
|
edit: true
|
||||||
|
envKey: DATA_PATH
|
||||||
|
labelEn: Data folder path
|
||||||
|
labelZh: 数据文件夹路径
|
||||||
|
required: true
|
||||||
|
type: text
|
||||||
|
|
@ -0,0 +1,20 @@
|
||||||
|
version: '3'
|
||||||
|
services:
|
||||||
|
music-tag-web:
|
||||||
|
container_name: ${CONTAINER_NAME}
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- "${PANEL_APP_PORT_HTTP}:8001"
|
||||||
|
volumes:
|
||||||
|
- "${DATA_PATH}:/app/media:rw"
|
||||||
|
- "./config:/app/data"
|
||||||
|
command: /start
|
||||||
|
image: xhongc/music_tag_web:latest
|
||||||
|
labels:
|
||||||
|
createdBy: "Apps"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
Loading…
Reference in New Issue