Using docker with wordpress, how to handle backups correctly?

There is really only two things you need to back up. The database, and the site data. The database is all your users, posts, categories, tags, etc. The site data includes your themes, plugins, uploaded media, etc. To backup the database, just dump the data with mysqldump. mysqldump -u {username} -p{password} wordpress > database_dump.sql If … Read more