It would be really nice to be able to use the default DockerCmdExecFactory without having to use SSL.
As far as I can tell this line will always fail if no SSL certs are given.
Including code here for convenience:
SSLContext sslContext;
try {
sslContext = dockerClientConfig.getSslConfig().getSSLContext();
} catch(Exception ex) {
throw new DockerClientException("Error in SSL Configuration", ex);
}
It would be really nice to be able to use the default DockerCmdExecFactory without having to use SSL.
As far as I can tell this line will always fail if no SSL certs are given.
Including code here for convenience: