Rostislav Benes
Rostislav Benes
The problem is that `go.uber.org/atomic` can be imported as `github.com/uber-go/atomic`, too. When `Gopkg.lock` contains both, then the second checkout of atomic fails because the checkout directory already exists.
I have expericed something similar when I was testing host ports. I think the problem is hardcoded `localhost` in https://github.com/testcontainers/testcontainers-go/blob/bca5a282a15f345b8db7c91179dcb38f74cc7a2d/port_forwarding.go#L230 I was able to fix my problem by changing `localhost`...
I think that interface/ip address which used for exposed ports (in this case ssh port) is configurable in docker and is not guaranteed that it will be localhost on every...
I have found out that our setup runs in containers which are accesing host docker daemon using mounted socket (something like `-v /var/run/docker.sock:/var/run/docker.sock`). However they are not using host network...