I\'m running a NodeJS App with docker-compose. Everything works fine and I can see all my data by connecting to Mongo inside container. But when I connect to RoboMo
NodeJS
The easiest way is to enable forwarding the Mongo Container itself, here's how my docker-compose looks like.
mongo: image: mongo restart: always ports: - 27017:27017