You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we HTTP communication is used. This is not ideal and requires extensive configuration. Try using unix socket for communicating with docker.
// Create a client based on DOCKER_HOST and DOCKER_CERT_PATH env varsfinalDockerClientdocker = DefaultDockerClient.builder().uri("unix:///var/run/docker.sock")
.build();
// Pull an imagedocker.pull("busybox", newAnsiProgressHandler());
Currently we HTTP communication is used. This is not ideal and requires extensive configuration. Try using unix socket for communicating with docker.
The text was updated successfully, but these errors were encountered: