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
{{ message }}
This repository has been archived by the owner on Nov 6, 2018. It is now read-only.
The config instance can be configured via ConfigBuilder or via enviornment [sic] variables (e.g. DOCKER_HOST). In the later [sic] case, you can directly isntantiate [sic] the DefaultDockerClient:
DockerClient client = new DefaultDockerClient();
Related, if I set a DOCKER_HOST environment variable and then do new DefaultDockerClient(new Config()), it fails with a NullPointerException during a call to usesUnixSocket:
java.lang.NullPointerException
at io.fabric8.docker.client.utils.HttpClientUtils.usesUnixSocket(HttpClientUtils.java:197)
at io.fabric8.docker.client.utils.HttpClientUtils.createHttpClient(HttpClientUtils.java:83)
at io.fabric8.docker.client.DefaultDockerClient.<init>(DefaultDockerClient.java:51)
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The documentation reads in part:
Related, if I set a
DOCKER_HOST
environment variable and then donew DefaultDockerClient(new Config())
, it fails with aNullPointerException
during a call tousesUnixSocket
:The text was updated successfully, but these errors were encountered: