Sign inSign up

extenda/java8-certificate-test

By extenda

Updated almost 2 years ago

Docker image that can be used to test LetsEncrypt compatibility on Java 8

Image
Networking
Developer tools
0

125

extenda/java8-certificate-test repository overview

Usage

docker run --rm extenda/java8-certificate-test:8u102 \
  testrunner.hiiretail.com \
  letsencrypt.org

The command will exit with status 1 if it fails to connect to any of the domains.

Apply LetsEncrypt patch

It's possible to apply a patch to support the ISRG Root X1 LetsEncrypt certificate. Simply include --patch with the command.

docker run --rm extenda/java8-certificate-test:8u102 \
  --patch \
  testrunner.hiiretail.com \
  letsencrypt.org

The patch executes the following keytool command.

usr/bin/keytool -importcert -noprompt \
  -storepass changeit \
  -alias isrgrootx1 \
  -keystore /usr/lib/jvm/zulu-8-amd64/jre/lib/security/cacerts \
  -file /letsencrypt/isrgroot1.pem

The PEM file can be downloaded with cURL.

curl -sS https://letsencrypt.org/certs/isrgrootx1.pem -o isrgrootx1.pem

Tag summary

Content type

Image

Digest

sha256:ffa6400a4

Size

152 MB

Last updated

almost 2 years ago

docker pull extenda/java8-certificate-test:8u102