Last active
May 22, 2024 10:16
-
-
Save JustGAST/d9e05881ee7f6bf37e869cd0b7ff46e5 to your computer and use it in GitHub Desktop.
Commands to backup and restore database from/to docker container
This file contains 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
# 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 | |
# Backup to gzip | |
pg_dump db_name | gzip > dump_name.sql.gz | |
# Restore from gzip | |
zcat dump_name.sql.gz | 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