feat:更新music-tag-web

This commit is contained in:
okxlin 2024-02-04 22:04:29 +08:00
parent d7f757f02d
commit 817a9b0d7f
6 changed files with 43 additions and 2 deletions

View File

@ -8,9 +8,10 @@ services:
ports:
- "${PANEL_APP_PORT_HTTP}:8001"
volumes:
- "${DATA_PATH}:/app/media:z"
- "${DATA_PATH}:/app/media:rw"
- "./config:/app/data"
command: /start
image: registry.cn-hangzhou.aliyuncs.com/charles0519/music_tag_web:1.2.5
image: xhongc/music_tag_web:2.0.0
labels:
createdBy: "Apps"

View File

@ -0,0 +1,3 @@
CONTAINER_NAME="music-tag-web"
PANEL_APP_PORT_HTTP="40129"
DATA_PATH="./data"

View File

@ -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

View File

@ -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