Sign inSign up

side/mongo

By side

Updated about 1 year ago

Query your WiredTiger backups. Default is 4.2.18

Image
0

6.6K

side/mongo repository overview

Extract your wiredTiger backup

go to the folder where all the *.wt files are

docker run --rm --name mongodb -d -p 27017:27017 -v $(pwd):/data/db side/mongo:7.0

After starting the container, you can connect with the MongoDB shell directly:

docker exec -ti mongodb mongosh

use <your db>
db.<yourcollection>.find()

Starting for mongo 7.0 you should use mongosh

docker exec -ti mongodb mongosh
use <your db>
db.<yourcollection>.find()

Tag summary

Content type

Image

Digest

sha256:fd3e9723d

Size

321.6 MB

Last updated

about 1 year ago

docker pull side/mongo