1
0

chore(deps): update innei/mx-server docker tag to v10.1.10 (localApps) (#4405)

This commit is contained in:
renovate[bot]
2026-03-08 00:48:00 +00:00
committed by GitHub
parent 108ac85057
commit faea80fc89
7 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,43 @@
additionalProperties:
formFields:
- default: "./data"
edit: true
envKey: MX_SERVER_ROOT_PATH
labelZh: 数据持久化路径
labelEn: Data persistence path
label:
en: Data persistence path
zh: 数据持久化路径
required: true
type: text
- default: 2333
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: JWT_SECRET
labelZh: JWT 密钥
labelEn: JWT Secret
label:
en: JWT Secret
zh: JWT 密钥
required: true
type: text
- default: ",localhost"
edit: true
envKey: ALLOWED_ORIGINS
labelZh: 允许的访问来源
labelEn: 允许的访问来源
label:
en: 允许的访问来源
zh: 允许的访问来源
required: true
type: text

View File

@@ -0,0 +1,48 @@
networks:
1panel-network:
external: true
services:
mx-server:
image: innei/mx-server:10.1.10
depends_on:
- mx-mongo
- mx-redis
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:2333
volumes:
- ${MX_SERVER_ROOT_PATH}/data:/root/.mx-space
environment:
- TZ=Asia/Shanghai
- PORT=2333
- DEMO=false
- NODE_ENV=production
- ENCRYPT_ENABLE=false
- DB_HOST=mx-mongo
- REDIS_HOST=mx-redis
mx-mongo:
image: mongo
pull_policy: always
container_name: mongo-${CONTAINER_NAME}
volumes:
- ${MX_SERVER_ROOT_PATH}/db:/data/db
networks:
- 1panel-network
restart: always
mx-redis:
image: redis:alpine
pull_policy: always
container_name: redis-${CONTAINER_NAME}
volumes:
- ${MX_SERVER_ROOT_PATH}/redis:/data
networks:
- 1panel-network
restart: always