Database Import and Export How-to guides

A quick overview of database import and export related how-tos I have covered, as it's a subject that is fairly frequently searched for.

How to dump & restore a MongoDB database from a docker container
MongoDB is an interesting tool. Dead simple to create and modify records (or, “documents”) that are basically pure JSON goodness, juxtaposed with at times tools or commands that make you scratch your head in utter confusion and/or disbelief. To help prevent me from having to re-figure this out a
How to dump & restore a PostgreSQL database from a docker container
Sometimes you need to quickly dump and restore a PostgreSQL database, but what’sthe easiest way to do this when your database is in a Docker container? How to dump & restore a MariaDB/MySQL database from a docker containerIn thesame vein as my previous post on dumping and restoring
How to dump & restore a MariaDB/MySQL database from a docker container
In the same vein as my previous post on dumping and restoring your PostgreSQLdatabase, here are mostly copy/paste-able commands for when you’re using aMariaDB or MySQL database. How to dump & restore a PostgreSQL database from a docker containerSometimesyouneed to quickly dump and restore a Po…