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,63 @@
services:
mixspace:
container_name: ${CONTAINER_NAME}
image: innei/mx-server:10.1.10
command: bash ./docker-run.sh
environment:
- TZ=${TIME_ZONE}
- NODE_ENV=production
- ALLOWED_ORIGINS=${ALLOWED_ORIGINS}
- JWT_SECRET=${JWT_SECRET}
- ENCRYPT_KEY=${ENCRYPT_KEY}
- ENCRYPT_ENABLE=${ENCRYPT_ENABLE}
volumes:
- ./data/mx-space:/root/.mx-space
ports:
- '${PANEL_APP_PORT_HTTP}:2333'
networks:
- mixspace-network
restart: always
healthcheck:
test: ['CMD', 'curl', '-f', 'http://127.0.0.1:2333/api/v2/ping']
interval: 1m30s
timeout: 30s
retries: 5
start_period: 30s
depends_on:
- mongo
- redis
links:
- mongo
- redis
labels:
createdBy: "Apps"
mongo:
container_name: ${CONTAINER_NAME}-mongo
image: mongo
pull_policy: always
volumes:
- ./data/db:/data/db
networks:
- mixspace-network
restart: always
labels:
createdBy: "Apps"
redis:
image: redis
pull_policy: always
container_name: ${CONTAINER_NAME}-redis
networks:
- mixspace-network
restart: always
labels:
createdBy: "Apps"
networks:
mixspace-network:
driver: bridge
ipam:
driver: default
config:
- subnet: ${SUBNET_PREFIX}.0/16