Building w docker fails starting today.. 1.0

All of a sudden my docker containers cannot communicate anymore , old test running GREEN early thursday is now going RED. (Checking the very same commit…)

I’m using --link flag to connect 2 docker containers.
CircleCI 1.0 I guess…

1 Like

update;
I had to add “;sleep 20” to avoid 1st container stopping…
line is now

  • docker run -d --name queue rabbitmq:3 ; sleep 20

Why did this work earlier without the sleep command?