Many Paths to MongoDB Shell (mongosh)
To promote their product, MongoDB has setup their own online learning resource MongoDB University. I was curious to learn more about a database that offers something different from a standard SQL relational database, so I started with their "Introduction to MongoDB" course. Since it was at least partially a marketing tool, I was not surprised the course wanted to take us through a grand tour through all MongoDB products from their cloud-hosted MongoDB Atlas data platform to all the tools we can download and install. I was ready to just ignore and skip over those sales pitches, but then the course would quiz me to make sure I've actually installed them on my computer. This annoyed me, especially for the MongoDB Shell (mongosh). It's how Codecademy introduces us to MongoDB, and it's what we use in MongoDB University's Instruqt hands-on labs. There are so many ways to get mongosh I refuse to download and run a full blown application installer package just for a command line tool.
At a minimum, this duplicates work. MongoDB Compass is another item the course wants us to download and install. Compass is a separate application that offers GUI-based methods for interacting with a MongoDB database and/or Atlas cluster. GUI are nice but rarely cover 100% of all scenarios, so developers like the option of dropping to a command line. Which is why clicking at the bottom of MongoDB Compass would bring up an integrated mongosh.
I've been using Docker as a tool to avoid installing software directly on my computer. I couldn't escape installing MongoDB Compass because of its graphics interface, but as a command line tool mongosh is easy to run through Docker. The easiest way is to use the official MongoDB Docker image, which includes mongosh alongside the core database engine.
docker run --rm -it mongo:latest mongosh [connection string]
Doing this means we're pulling down the entire MongoDB database just for the little mongosh tool. That's like ordering an entire seven-course meal to eat just the little cherry on top of ice cream dessert. Even in this age of broadband internet, that seems rather excessive. I thought it'd be neat to try setting up a container just for mongosh, see if that's any smaller.
I found instructions for installing mongosh on an Ubuntu instance. Ubuntu Focal is one of the supported versions so I'll start there.
> docker run --name mymongosh -it ubuntu:focal
I'll need some tools not found in this basic Ubuntu container, so I need to populate the package index followed by their installation.
> apt update
> apt install wget gnupg
After that I could follow MongoDB instructions. Slightly modified by removing "sudo" as it was unnecessary: we are running as root in this little world.
> wget -qO - https://www.mongodb.org/static/pgp/server-6.0.asc | apt-key add -
> echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/6.0 multiverse" | tee /etc/apt/sources.list.d/mongodb-org-6.0.list
> apt update
> apt install mongodb-mongosh
And voila! I have a docker container "mymongosh" based on the Ubuntu Focal container. Let me see how big it is:
> docker ps --size
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES SIZE
757519a645f8 ubuntu:focal "bash" 19 minutes ago Up 19 minutes mymongosh 278MB (virtual 351MB)
Wow, getting this far meant pulling 278MB on top of 73MB of Ubuntu Focal. This was far larger than I had hoped. While this size still compared favorably with MongoDB image size of almost 700MB, I don't think my little experiment was worth the effort.
PS C:\Users\roger\coding\PostgreSQL> docker image ls
REPOSITORY TAG IMAGE ID CREATED SIZE
mongo latest 2dd27bb6d3e6 7 days ago 695MB
If I want small size, I'd have to learn how to build a minimal Docker image based on Alpine, which isn't what I want to focus on right now. My next objective is to learn how to use MongoDB from Node.js code instead of mongosh.