Scripts to migrate MongoDB with Docker
At hola.cloud we migrated a MongoDB 3.6 between machines. To ensure we don't have any issues with versions, we used exactly the same version with the official Docker images. Here are a couple of scripts that have come in handy. export.sh #!/bin/bash
# check argument
if [ -z "${1:-}" ]; then echo...