✨ feat(byte-muse): add arm version 1.21.10 app configuration
- add new data.yml file with form fields for data path, webui port, and proxy settings - add new docker-compose.yml file defining the arm container service and network
This commit is contained in:
parent
3e318ac0d1
commit
3f7fca9efc
|
|
@ -0,0 +1,43 @@
|
|||
additionalProperties:
|
||||
formFields:
|
||||
- default: "./data"
|
||||
edit: true
|
||||
envKey: AUTO_LADY_ROOT_PATH
|
||||
labelZh: 数据持久化路径
|
||||
labelEn: Data persistence path
|
||||
label:
|
||||
en: Data persistence path
|
||||
zh: 数据持久化路径
|
||||
required: true
|
||||
type: text
|
||||
- default: 8080
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelZh: WebUI 端口
|
||||
labelEn: WebUI port
|
||||
label:
|
||||
en: WebUI port
|
||||
zh: WebUI 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: HTTP_PROXY
|
||||
labelZh: 网络代理地址
|
||||
labelEn: Network proxy address
|
||||
label:
|
||||
en: Network proxy address
|
||||
zh: 网络代理地址
|
||||
required: false
|
||||
type: text
|
||||
- default: "localhost,127.0.0.1,::1,192.168.0.0/16,10.0.0.0/8,*.local"
|
||||
edit: true
|
||||
envKey: NO_PROXY
|
||||
labelZh: 跳过代理地址
|
||||
labelEn: Skip proxy address
|
||||
label:
|
||||
en: Skip proxy address
|
||||
zh: 跳过代理地址
|
||||
required: false
|
||||
type: text
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
|
||||
services:
|
||||
auto-lady:
|
||||
image: envyafish/byte-muse_arm:1.21.10
|
||||
container_name: ${CONTAINER_NAME}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:80
|
||||
volumes:
|
||||
- ${AUTO_LADY_ROOT_PATH}/config:/data
|
||||
environment:
|
||||
- HTTPS_PROXY=${HTTP_PROXY}
|
||||
- HTTP_PROXY=${HTTP_PROXY:-}
|
||||
- NO_PROXY=${NO_PROXY:-}
|
||||
Loading…
Reference in New Issue