Created
June 14, 2019 07:07
-
-
Save s-r-x/8fae8509d91f554379018ba566aa2899 to your computer and use it in GitHub Desktop.
backup / restore mysql docker
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
https://stackoverflow.com/questions/46579381/how-to-restore-mysql-dump-from-host-to-docker-container | |
Backup | |
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
Restore | |
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment