Hello,
I'm quite new to docker and this repo has been very useful to me, but as of today it's outdated.
I'm using docker 1.11.2 and can't run the example because of the many errors in the docker-compose.yml but I fixed them and it actually works.
FROM node
RUN npm install -g node-inspector
EXPOSE 8080 # I also tried without exposing the port
ENTRYPOINT ["node-debug"]
When I run docker-compose up, my app start and run as expected, BUT I cannot access the debugger even if I can see the message about listening on http://127.0.0.1:8080/?port=5858.
Hello, I'm quite new to docker and this repo has been very useful to me, but as of today it's outdated. I'm using docker
1.11.2
and can't run the example because of the many errors in thedocker-compose.yml
but I fixed them and it actually works.However, given this docker-compose.yml:
And this Dockerfile for
node-debug
:When I run
docker-compose up
, my app start and run as expected, BUT I cannot access the debugger even if I can see the message about listening onhttp://127.0.0.1:8080/?port=5858
.Any ideas?