From c7c95c39f5d2320a4b3b99bd43cc213b66d5af34 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 17 Mar 2024 02:12:27 +0800 Subject: [PATCH] chore(deps): update mongo docker tag to v7 (#40) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- docs/rocket.chat/docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/rocket.chat/docker-compose.yml b/docs/rocket.chat/docker-compose.yml index 28c4ea8..4d8485c 100644 --- a/docs/rocket.chat/docker-compose.yml +++ b/docs/rocket.chat/docker-compose.yml @@ -23,7 +23,7 @@ services: - "traefik.frontend.rule=Host: your.domain.tld" mongo: - image: mongo:6.0 + image: mongo:7.0 restart: unless-stopped volumes: - ./data/db:/data/db @@ -35,7 +35,7 @@ services: # this container's job is just run the command to initialize the replica set. # it will run the command and remove himself (it will not stay running) mongo-init-replica: - image: mongo:6.0 + image: mongo:7.0 command: 'mongo mongo/rocketchat --eval "rs.initiate({ _id: ''rs0'', members: [ { _id: 0, host: ''localhost:27017'' } ]})"' depends_on: - mongo