Skip to content

Instantly share code, notes, and snippets.

@lucakiebel
Last active May 15, 2024 18:28
Show Gist options
  • Save lucakiebel/22da32d89278328bcbc0bc9610281223 to your computer and use it in GitHub Desktop.
Save lucakiebel/22da32d89278328bcbc0bc9610281223 to your computer and use it in GitHub Desktop.
Use Mongodump and Mongorestore to backup and restore MongoDB Databases run in docker-compose
docker-compose exec -T mongodb mongodump --authenticationDatabase admin -u root -p password --db test --archive --gzip > dump.gz
docker-compose exec -T mongodb mongorestore --authenticationDatabase admin -u root -p password --archive --gzip < dump.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment