-
-
Save LuisAcerv/6d3d8f794f48b2198115b9b59e7a7ad8 to your computer and use it in GitHub Desktop.
Revisions
-
ipedrazas created this gist
Apr 22, 2017 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ # 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 hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ # 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’