I'm new to docker so I'm sorry if I'm missing something trivial. Anyway I'm using Boot2Docker v1.3.2 and running docker version gives me the following:
Client version: 1.3.2
Client API version: 1.15
Go version (client): go1.3.3
Git commit (client): 39fa2fa
OS/Arch (client): darwin/amd64
Server version: 1.3.2
Server API version: 1.15
Go version (server): go1.3.3
Git commit (server): 39fa2fa
The problem is that when I run the following:
lein uberimage -H http://192.168.59.104:2376
I get the following error:
#<IOException java.io.IOException: This archives contains unclosed entries.>
Dec 06, 2014 6:43:32 AM org.apache.http.impl.client.DefaultHttpClient tryExecute
INFO: I/O exception (java.net.SocketException) caught when processing request to {}->http://192.168.59.104:2376: Broken pipe
Dec 06, 2014 6:43:32 AM org.apache.http.impl.client.DefaultHttpClient tryExecute
INFO: Retrying request to {}->http://192.168.59.104:2376
java.net.SocketException: Broken pipe
If I SSH into the docker container (using boot2docker ssh) can check the the /var/lib/boot2docker/docker.log file the following error shows up:
2014/12/05 20:35:52 http: TLS handshake error from 192.168.59.3:61556: tls: oversized record received with length 21536
I've also tried changing to https but it gives me the following error when using leiningen:
Using jar file /Users/johan/devtools/java/projects/parkster/code/backend/bad-email-notifier/ target/uberjar /bad-email-notifier-0.1.0-SNAPSHOT-standalone.jar
sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
at sun.security.provider.certpath.SunCertPathBuilder.build (SunCertPathBuilder.java:145)
sun.security.provider.certpath.SunCertPathBuilder.engineBuild (SunCertPathBuilder.java:131)
java.security.cert.CertPathBuilder.build (CertPathBuilder.java:280)
and the following in the /var/lib/boot2docker/docker.log file:
2014/12/05 20:36:42 http: TLS handshake error from 192.168.59.3:61557: remote error: unknown certificate
I'm not sure how to proceed.
I'm new to docker so I'm sorry if I'm missing something trivial. Anyway I'm using Boot2Docker v1.3.2 and running
docker versiongives me the following:Client version: 1.3.2
Client API version: 1.15
Go version (client): go1.3.3
Git commit (client): 39fa2fa
OS/Arch (client): darwin/amd64
Server version: 1.3.2
Server API version: 1.15
Go version (server): go1.3.3
Git commit (server): 39fa2fa
The problem is that when I run the following:
I get the following error:
If I SSH into the docker container (using
boot2docker ssh) can check the the/var/lib/boot2docker/docker.logfile the following error shows up:I've also tried changing to https but it gives me the following error when using leiningen:
and the following in the
/var/lib/boot2docker/docker.logfile:I'm not sure how to proceed.