Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Pin MongoDB to version 4
With version 6 Javascript client complains:
Unsupported OP_QUERY command: insert. The client driver may require an upgrade.
  • Loading branch information
pspacek committed Jun 11, 2025
commit 1e7189272ba215b7b5be9d05b3e6d78ff476ce4d
2 changes: 1 addition & 1 deletion devel/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
build: mongo
ports:
- "127.0.0.1:27017:27017"
command: ["--replSet", "rs", "--logappend", "--logpath", "/dev/null"]
command: ["--replSet", "rs"]
hostname: "mongo"

perflab_web:
Expand Down
2 changes: 1 addition & 1 deletion devel/mongo/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mongo
FROM docker.io/library/mongo:4

ADD init.js /docker-entrypoint-initdb.d/

Expand Down