Query your WiredTiger backups. Default is 4.2.18
6.6K
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()
Content type
Image
Digest
sha256:fd3e9723d…
Size
321.6 MB
Last updated
about 1 year ago
docker pull side/mongo