Need to install mongosh
docker exec -it my-database mongosh
Show the actual dbs:
show dbs
Tip if you want to clear you screen like the "clear" command in linux, you can use:
cls
Use your db or create a new db:
use <name_of_your_db>
If you want to create a collection in your actual db:
db.createCollection("producers")