I want to fetch information from the Docker REST server through a .sock file and I don't see any references how to do this. In the shell, this is the command:
echo -e "GET /images/json HTTP/1.0\r\n" | nc -U /var/run/docker.sock Does anyone know how to do the equivalent from Java?
