Skip to content

Instantly share code, notes, and snippets.

View guptaashwanee's full-sized avatar
🚀
Future Generation Explorer 🔮

Ashwanee Kumar Gupta guptaashwanee

🚀
Future Generation Explorer 🔮
View GitHub Profile
@mtrunkat
mtrunkat / docker-mongo-repair
Last active March 19, 2024 06:28
Run "mongo --repair" in Docker container that cannot start because of MongoDB error
#!/bin/bash
# See https://github.com/docker-library/mongo/pull/63
docker run --rm --volumes-from my-mongo-server mongo unlink "/data/db/mongod.lock"
docker run --rm --volumes-from my-mongo-server mongo --repair