Skip to content

Instantly share code, notes, and snippets.

@s-r-x
Created June 14, 2019 07:07
Show Gist options
  • Save s-r-x/8fae8509d91f554379018ba566aa2899 to your computer and use it in GitHub Desktop.
Save s-r-x/8fae8509d91f554379018ba566aa2899 to your computer and use it in GitHub Desktop.
backup / restore mysql docker
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