Matt Brown
Matt Brown
What leads to `date_parse` getting an input of `0001-01-01 00:00:00`?
https://github.com/google/google-java-format/issues/787 has a few workarounds
I don't think this exists at all in the plugin, but we'd be happy to accept any pull requests that add it.
Thanks for the PR. Do you happen to know if openshift support for a registry push can also be achieved by configuring docker, either by editing config.json or a [credentials...
Looks like the issue is that `AbstractDockerMojo` calls `DefaultDockerClient.fromEnv()` which [defaults to setting a certificate path of](https://github.com/spotify/docker-client/blob/master/src/main/java/com/spotify/docker/client/DefaultDockerClient.java#L1426-L1428) `System.getProperty("user.home") + ".docker"` with no way of overriding the logic or specifying your...
`DefaultDockerClient.fromEnv()` in docker-client will configure the DockerClient to use a set of certificates if the path pointed to by `DOCKER_CERT_PATH` or `~/.docker` exists and if each of `ca.pem`, `cert.pem` and...
On the other hand, this check in docker-client doesn't really need to be there ``` java if ((builder.dockerCertificates != null) && !originalUri.getScheme().equals("https")) { throw new IllegalArgumentException( "An HTTPS URI for...
Sorry, my previous comment is false. [DefaultDockerClient uses the presence of the `DockerCertificates` class to determine if it should use `http` or `https` to communicate with the Docker Remote API...
> If I dont have DOCKER_CERT_PATH, it will end up with "Caused by: java.net.SocketException: Connection reset by peer: socket write error" This usually points to the thing you are connecting...
Thanks for the contribution! I have not had a chance to take a look at the code yet, but can I ask why not simply cron or regular run something...