-
-
Save rocknr011/051c8c4a90d1bd03522a3f2c6deda1b9 to your computer and use it in GitHub Desktop.
Backup and restore a mysql database from a running Docker mysql container
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 characters
| # Backup | |
| docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
| # or | |
| docker exec CONTAINER sh -c 'exec mysqldump --all-databases -uroot -p\$MYSQL_ROOT_PASSWORD' > alldatabase.sql | |
| # Restore | |
| cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |
| # or | |
| cat alldatabase.sql | docker exec -i CONTAINER sh -c 'exec mysql -uroot -p$MYSQL_ROOT_PASSWORD' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment