Skip to content

Instantly share code, notes, and snippets.

@stormwild
Forked from spalladino/mysql-docker.sh
Last active August 14, 2018 14:36
Show Gist options
  • Save stormwild/a3662b4bcfea66582778e13fa7a1facf to your computer and use it in GitHub Desktop.
Save stormwild/a3662b4bcfea66582778e13fa7a1facf to your computer and use it in GitHub Desktop.
Backup and restore a mysql database from a running Docker mysql 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
docker exec -it <containerIdOrName> bash
## References
- [How to get bash or ssh into a running container in background mode?](https://askubuntu.com/questions/505506/how-to-get-bash-or-ssh-into-a-running-container-in-background-mode)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment