You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

673 B

MongoDB Quickstart with Python course

This project follow's Michael C. Kennedy's MongoDB Quickstart.

Docker instructions

The docker container and documentation can be found here.

We will use the following command to start up a container to host our data and

docker run --name quick-mongo -p 27017:27017 -v /Users/Drewbednar/PycharmProjects/try_mongo/data:/data/db -d mongo:3.6.12-xenial 

When looking to restart your container simply run:

docker start quick-mongo

To check the configuration for the container run:

docker inspect quick-mongo