Skip to content

Instantly share code, notes, and snippets.

View AnhLT185's full-sized avatar

Le Tuan Anh AnhLT185

  • vietnam
View GitHub Profile
@AnhLT185
AnhLT185 / mysql-docker.sh
Created July 5, 2022 14:00 — 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