0

I am using Dokku (and not an expert in Docker).

Everything works fine, except that I can not access to one of my web service from the docker container: a time out is generated. The exact same code works fine from a different machine, accessing to the remote host.

I suspect things related to docker routing, but not sure exactly what to check. I see nothing related to docker or docku in the iptables?

tomsoft
  • 4,100
  • 5
  • 25
  • 32
  • guys downgrading without explanation is always a pleasure! A comment to explain why it's a bad question/problem would be better – tomsoft Feb 01 '15 at 14:43

1 Answers1

0

Enter in your docker container with

docker exec xxx

or nsenter if you have a docker version < 1.3 https://github.com/jpetazzo/nsenter

and check with traceroute, ping, mtr, netstat and others the connectivity (maybe you will have to install them)

Here is the doc for docker exec

https://docs.docker.com/reference/commandline/cli/#exec

user2915097
  • 24,082
  • 5
  • 47
  • 53