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.
My ~/.docker/config file can't be read by the docker-client project because of overly strict JSON mapping. I receive the following error:
SEVERE: Could not load docker config file from /Users/ljnelson/.docker/config.json
com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "HttpHeaders" (class io.fabric8.docker.api.model.DockerConfig), not marked as ignorable (one known property: "auths"])
at [Source: /Users/ljnelson/.docker/config.json; line: 25, column: 20] (through reference chain: io.fabric8.docker.api.model.DockerConfig["HttpHeaders"])
This is because my (perfectly valid) ~/.docker/config file contains (among other valid things):
My
~/.docker/config
file can't be read by the docker-client project because of overly strict JSON mapping. I receive the following error:This is because my (perfectly valid)
~/.docker/config
file contains (among other valid things):Leaving aside code generation, building, etc. if the
DockerConfig.java
file were edited in such a way to include@JsonIgnoreProperties(ignoreUnknown = true)
that would be a quick fix.The text was updated successfully, but these errors were encountered: