✨ feat(mixspace): update to version 8.4.0
- rename directory from apps/mixspace/8 to apps/mixspace/8.4.0 - update docker image tag from innei/mx-server:8 to innei/mx-server:8.4.0 - maintain all existing configuration files with version update
This commit is contained in:
parent
2d7c9d3671
commit
dfee375a22
|
|
@ -1,7 +1,7 @@
|
||||||
services:
|
services:
|
||||||
mixspace:
|
mixspace:
|
||||||
container_name: ${CONTAINER_NAME}
|
container_name: ${CONTAINER_NAME}
|
||||||
image: innei/mx-server:8
|
image: innei/mx-server:8.4.0
|
||||||
command: bash ./docker-run.sh
|
command: bash ./docker-run.sh
|
||||||
environment:
|
environment:
|
||||||
- TZ=${TIME_ZONE}
|
- TZ=${TIME_ZONE}
|
||||||
|
|
@ -35,6 +35,7 @@ services:
|
||||||
mongo:
|
mongo:
|
||||||
container_name: ${CONTAINER_NAME}-mongo
|
container_name: ${CONTAINER_NAME}-mongo
|
||||||
image: mongo
|
image: mongo
|
||||||
|
pull_policy: always
|
||||||
volumes:
|
volumes:
|
||||||
- ./data/db:/data/db
|
- ./data/db:/data/db
|
||||||
networks:
|
networks:
|
||||||
|
|
@ -45,6 +46,7 @@ services:
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
image: redis
|
image: redis
|
||||||
|
pull_policy: always
|
||||||
container_name: ${CONTAINER_NAME}-redis
|
container_name: ${CONTAINER_NAME}-redis
|
||||||
networks:
|
networks:
|
||||||
- mixspace-network
|
- mixspace-network
|
||||||
|
|
@ -2,6 +2,7 @@ services:
|
||||||
mixspace:
|
mixspace:
|
||||||
container_name: ${CONTAINER_NAME}
|
container_name: ${CONTAINER_NAME}
|
||||||
image: innei/mx-server:latest
|
image: innei/mx-server:latest
|
||||||
|
pull_policy: always
|
||||||
command: bash ./docker-run.sh
|
command: bash ./docker-run.sh
|
||||||
environment:
|
environment:
|
||||||
- TZ=${TIME_ZONE}
|
- TZ=${TIME_ZONE}
|
||||||
|
|
@ -29,28 +30,30 @@ services:
|
||||||
links:
|
links:
|
||||||
- mongo
|
- mongo
|
||||||
- redis
|
- redis
|
||||||
labels:
|
labels:
|
||||||
createdBy: "Apps"
|
createdBy: "Apps"
|
||||||
|
|
||||||
mongo:
|
mongo:
|
||||||
container_name: ${CONTAINER_NAME}-mongo
|
container_name: ${CONTAINER_NAME}-mongo
|
||||||
image: mongo
|
image: mongo
|
||||||
|
pull_policy: always
|
||||||
volumes:
|
volumes:
|
||||||
- ./data/db:/data/db
|
- ./data/db:/data/db
|
||||||
networks:
|
networks:
|
||||||
- mixspace-network
|
- mixspace-network
|
||||||
restart: always
|
restart: always
|
||||||
labels:
|
labels:
|
||||||
createdBy: "Apps"
|
createdBy: "Apps"
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
image: redis
|
image: redis
|
||||||
|
pull_policy: always
|
||||||
container_name: ${CONTAINER_NAME}-redis
|
container_name: ${CONTAINER_NAME}-redis
|
||||||
networks:
|
networks:
|
||||||
- mixspace-network
|
- mixspace-network
|
||||||
restart: always
|
restart: always
|
||||||
labels:
|
labels:
|
||||||
createdBy: "Apps"
|
createdBy: "Apps"
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
mixspace-network:
|
mixspace-network:
|
||||||
|
|
@ -58,4 +61,4 @@ networks:
|
||||||
ipam:
|
ipam:
|
||||||
driver: default
|
driver: default
|
||||||
config:
|
config:
|
||||||
- subnet: ${SUBNET_PREFIX}.0/16
|
- subnet: ${SUBNET_PREFIX}.0/16
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue