## Custom MongoDB container for Planetmint Backend ### Step 1: Build and Push the Latest Container Use the `docker_build_and_push.bash` script to build the latest docker image and upload it to Docker Hub. Ensure that the image tag is updated to a new version number to properly reflect any changes made to the container. ### Step 2: Run the Container ``` docker run \ --cap-add=FOWNER \ --name=mdb1 \ --publish=: \ --rm=true \ --volume=:/data/db \ --volume=:/data/configdb \ --volume=:/mongo-ssl:ro \ planetmint/mongodb: \ --mongodb-port \ --mongodb-key-file-path /mongo-ssl/.pem \ --mongodb-ca-file-path /mongo-ssl/.crt \ --mongodb-crl-file-path /mongo-ssl/.pem \ --mongodb-fqdn \ --mongodb-ip ```