This is an automated email from the ASF dual-hosted git repository.

snazy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git


The following commit(s) were added to refs/heads/main by this push:
     new 68c197d9c Unify mongo image ref (#3303)
68c197d9c is described below

commit 68c197d9cb29f2bd398727c0ce7710fe045bdaad
Author: Robert Stupp <[email protected]>
AuthorDate: Sat Dec 20 21:46:59 2025 +0100

    Unify mongo image ref (#3303)
    
    To prevent duplicate version-bump PRs like #3299 and #3300
---
 .../nosql/persistence/docker/mongodb-3-nodes/docker-compose.yml     | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/persistence/nosql/persistence/docker/mongodb-3-nodes/docker-compose.yml 
b/persistence/nosql/persistence/docker/mongodb-3-nodes/docker-compose.yml
index 4ec183545..e95760bed 100644
--- a/persistence/nosql/persistence/docker/mongodb-3-nodes/docker-compose.yml
+++ b/persistence/nosql/persistence/docker/mongodb-3-nodes/docker-compose.yml
@@ -40,7 +40,7 @@ version: '3'
 
 services:
   mongo1:
-    image: mongo:8.2.3
+    image: docker.io/mongo:8.2.3
     command: ["--replSet", "rs0", "--bind_ip_all", "--port", "27017"]
     ports:
       - "27017:27017"
@@ -56,7 +56,7 @@ services:
       - "mongo1_config:/data/configdb"
 
   mongo2:
-    image: mongo:8.2.3
+    image: docker.io/mongo:8.2.3
     command: ["--replSet", "rs0", "--bind_ip_all", "--port", "27018"]
     ports:
       - "27018:27018"
@@ -67,7 +67,7 @@ services:
       - "mongo2_config:/data/configdb"
 
   mongo3:
-    image: mongo:8.2.3
+    image: docker.io/mongo:8.2.3
     command: ["--replSet", "rs0", "--bind_ip_all", "--port", "27019"]
     ports:
       - "27019:27019"

Reply via email to