MongoDB

Get started with MongoDB

using Docker and Docker Compose.

Donald Le
Oct 17, 2020

--

Photo by Usukhbayar Gankhuyag on Unsplash

Pull the latest mongodb docker image from dockerhub

docker pull mongo:latest

init-mongo.js

db.createUser(
{
user : "username",
pwd : "password",
roles : [
{
role : "readWrite",
db : "testing"
}
]…

--

--

Donald Le

A passionate automation engineer who strongly believes in “A man can do anything he wants if he puts in the work”.