I am new to Docker and I cannot connect to any containers.
I installed the Docker Toolbox . Now I'm trying to get Shipyard . I followed the steps inside the docker quick launch terminal. The instructions say:
Once deployed, the script will print the URL for the connection along with the validity information.
Shipyard installer finished:
Shipyard available at http://10.0.2.15:8080 Username: [elided] Password: [elided]
However, I went to http://10.0.2.15:8080 in my browser and did not connect.
In another Docker quick launch terminal, I made docker ps to find out what the container is and get its IP address, and I got:
$ docker inspect a4755 | grep IPAddress "SecondaryIPAddresses": null, "IPAddress": "172.17.0.8", "IPAddress": "172.17.0.8",
I'm not sure why the IP was different, but I tried to connect to http://172.17.0.8:8080 , and that didn't work either. http://localhost:8080 also failed.
This also happened when I tried to launch docker-gunicorn-nginx - it all started, but I could not connect to the machine.
What gives?
source share