How to connect VS Code debugger to a docker compose container with no exposed ports?
I have a docker compose setup that has a few different containers running, but the main container that I am actually working with is a node.js project that does not actually have any exposed ports, as the project itself doesn’t need them. It is a chat bot that simply responds to commands when prompted. Is there any way I can get a VS Code debugger to connect to it when running so that I can debug any issues?