Docker: mongodb

Create dockerfile, complete build process then run image with mapped port

#docker run -p 27017:27017 —name mongo1 -d my/repo
#docker ps

In order to stop and remove the mongo

#docker stop mongo1
#docker rm -v mongo1
#docker rm -v docker1

Run mongodb container

#docker run -p 27017:27017 —name mongodb2 -d my/repo —smallfiles
#docker logs mongodb2

Leave a Reply

RELATED POST

Virtual Machine Manager: Error starting domain

Starting up the KVM error occurred Error starting domain: Requested operation is not valid: network 'default' is not active Locate…

Git Commands

How to initialize a Git repo: Everything starts from here. The first step is to initialize a new Git repo…

Lab Hack: Raspberry Pi running VMWare ESXi

As strange as the title sounds, yes I am running VMWare ESXi on a Raspberry Pi 4 Model B (4GB)…

Lab Hack: Ubuntu openssh-server and passwordless authentication

While setting up the lab for a docker swarm training module I decided to spin up a few vms in…