diff --git a/apps/mixspace/8/.env.sample b/apps/mixspace/8.4.0/.env.sample similarity index 100% rename from apps/mixspace/8/.env.sample rename to apps/mixspace/8.4.0/.env.sample diff --git a/apps/mixspace/8/data.yml b/apps/mixspace/8.4.0/data.yml similarity index 100% rename from apps/mixspace/8/data.yml rename to apps/mixspace/8.4.0/data.yml diff --git a/apps/mixspace/8/docker-compose.yml b/apps/mixspace/8.4.0/docker-compose.yml similarity index 94% rename from apps/mixspace/8/docker-compose.yml rename to apps/mixspace/8.4.0/docker-compose.yml index d91bc656f..d5ee3eaeb 100644 --- a/apps/mixspace/8/docker-compose.yml +++ b/apps/mixspace/8.4.0/docker-compose.yml @@ -1,7 +1,7 @@ services: mixspace: container_name: ${CONTAINER_NAME} - image: innei/mx-server:8 + image: innei/mx-server:8.4.0 command: bash ./docker-run.sh environment: - TZ=${TIME_ZONE} @@ -35,6 +35,7 @@ services: mongo: container_name: ${CONTAINER_NAME}-mongo image: mongo + pull_policy: always volumes: - ./data/db:/data/db networks: @@ -45,6 +46,7 @@ services: redis: image: redis + pull_policy: always container_name: ${CONTAINER_NAME}-redis networks: - mixspace-network diff --git a/apps/mixspace/latest/docker-compose.yml b/apps/mixspace/latest/docker-compose.yml index 7487aa708..61b522b36 100644 --- a/apps/mixspace/latest/docker-compose.yml +++ b/apps/mixspace/latest/docker-compose.yml @@ -2,6 +2,7 @@ services: mixspace: container_name: ${CONTAINER_NAME} image: innei/mx-server:latest + pull_policy: always command: bash ./docker-run.sh environment: - TZ=${TIME_ZONE} @@ -29,28 +30,30 @@ services: links: - mongo - redis - labels: - createdBy: "Apps" + 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" + labels: + createdBy: "Apps" redis: image: redis + pull_policy: always container_name: ${CONTAINER_NAME}-redis networks: - mixspace-network restart: always - labels: - createdBy: "Apps" + labels: + createdBy: "Apps" networks: mixspace-network: @@ -58,4 +61,4 @@ networks: ipam: driver: default config: - - subnet: ${SUBNET_PREFIX}.0/16 \ No newline at end of file + - subnet: ${SUBNET_PREFIX}.0/16