Copy entire Mongodb Database running inside Docker Container in a Remote machine to your Local machine
Lets start by breaking into the remote machine
ssh [username]@[IP Address]
Once you are in the remote machine you need to get inside the docker container that is running your mongodb database:
docker exec -it [your conatiner id] bash
Now we are goi...
ahsanjs.hashnode.dev2 min read