Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ protected void initChannel(final KQueueDomainSocketChannel channel) throws Excep

@Override
public DuplexChannel connect(Bootstrap bootstrap) throws InterruptedException {
return (DuplexChannel) bootstrap.connect(new DomainSocketAddress("/var/run/docker.sock")).sync().channel();
String socketPath = getDockerClientConfig().getDockerHost().getPath();
return (DuplexChannel) bootstrap.connect(new DomainSocketAddress(socketPath)).sync().channel();
}
}

Expand Down