-
-
Save ipedrazas/0efeb519871bff38433ebde54ae423ec to your computer and use it in GitHub Desktop.
Mongo dump/restore with docker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Backup DB | |
docker run \ | |
--rm \ | |
--link running_mongo:mongo \ | |
-v /data/mongo/backup:/backup \ | |
mongo \ | |
bash -c ‘mongodump --out /backup --host $MONGO_PORT_27017_TCP_ADDR’ | |
# Download the dump | |
scp -r USER@REMOTE:/data/mongo/backup ./backup | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Restore DB | |
# upload file | |
scp -r ./backup USER@REMOTE:/data/mongo/backup | |
docker run \ | |
--rm \ | |
--link running_mongo:mongo \ | |
-v /data/mongodb/backup:/backup \ | |
mongo \ | |
bash -c ‘mongorestore /backup --host $MONGO_PORT_27017_TCP_ADDR’ |
@jeromejaglale
I get EOF error cause my dump is a directory. What to do?
Hey @ipedrazas,
Can you help me in explaining your command. Not sure, getting error -
/backup’: $'\342\200\230mongorestore': command not found
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@jeromejaglale
I get EOF error with restore, it seems like other people have this issue with your lines. Are you sure the restore or the dump is done properly this way?