I am running a Spring Boot app that has MongoDB embedded in it. When I start the app, MongoDB starts and a DB called 'testdb' is created. If I launch a mongo shell and do 'show dbs', 'testdb' is not listed. If I use Postman to POST data to MongoDB I can get it back with the GET, so I know MondoDB is working in the app.
How, if possible, can I connect to this embedded instance of MongoDB so I can test it with the shell?