Skip to content

Instantly share code, notes, and snippets.

View iautushka's full-sized avatar

Ihnat Aŭtuška iautushka

  • Setplex
View GitHub Profile
@iautushka
iautushka / mysql-docker.sh
Created June 16, 2021 10:27 — forked from spalladino/mysql-docker.sh
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