Skip to content

Instantly share code, notes, and snippets.

View BradleyBoutcher's full-sized avatar
🏠
Working from home

Bradley Boutcher BradleyBoutcher

🏠
Working from home
View GitHub Profile
@BradleyBoutcher
BradleyBoutcher / mongo-cheatsheet.md
Created March 5, 2024 19:21 — forked from dittmaraz/mongo-cheatsheet.md
MongoDB/Docker Cheatsheet

Mongo/Docker Cheatsheet

To download the latest image:

$ docker pull mongo:latest

To run a mongo container with detached mode(-p) and with ports mapped (-p 27017-27019:27017-27019) and named (--name mongodb):

$ docker run -d -p 27017-27019:27017-27019 --name mongodb mongo:latest