I'm pretty sure that [`Config`](https://github.com/docker-java/docker-java/blob/master/src/main/java/com/github/dockerjava/client/Config.java#L9) should be a public class and that [`Config#createConfig()`](https://github.com/docker-java/docker-java/blob/master/src/main/java/com/github/dockerjava/client/Config.java#L18) should also be public. If they're not, the [public `DockerClient(Config)` constructor](https://github.com/docker-java/docker-java/blob/master/src/main/java/com/github/dockerjava/client/DockerClient.java#L85) can't easily be called.
I'm pretty sure that
Configshould be a public class and thatConfig#createConfig()should also be public.If they're not, the public
DockerClient(Config)constructor can't easily be called.