From 72ab4c1b9e004e956fb38a5637ffb897ace52cae Mon Sep 17 00:00:00 2001 From: Giulia Naponiello Date: Apr 04 2019 14:57:43 +0000 Subject: Check again https verify on CA The error seems solved... --- diff --git a/docker/install-ca.sh b/docker/install-ca.sh index fb33c8a..fd600cc 100755 --- a/docker/install-ca.sh +++ b/docker/install-ca.sh @@ -3,7 +3,7 @@ set -e if [ -n "${CA_URL}" ] && [ ! -f "/tmp/.imported" ]; then # Since update-ca-trust doesn't work as a non-root user, let's just append to the bundle directly - curl -k --silent --show-error "${CA_URL}" >> /etc/pki/tls/certs/ca-bundle.crt + curl --silent --show-error "${CA_URL}" >> /etc/pki/tls/certs/ca-bundle.crt # Create a file so we know not to import it again if the container is restarted touch /tmp/.imported fi