Created
January 22, 2015 00:14
-
-
Save irgeek/afb2e05775fff532f960 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
BOOT2DOCKER_CERTS_DIR=/var/lib/boot2docker/certs | |
CERTS_DIR=/etc/ssl/certs | |
CAFILE=${CERTS_DIR}/ca-certificates.crt | |
for cert in $(/bin/ls -1 ${BOOT2DOCKER_CERTS_DIR}); do | |
SRC_CERT_FILE=${BOOT2DOCKER_CERTS_DIR}/${cert} | |
CERT_FILE=${CERTS_DIR}/${cert} | |
HASH_FILE=${CERTS_DIR}/$(/usr/local/bin/openssl x509 -noout -hash -in ${SRC_CERT_FILE} 2>/dev/null) | |
[ ! -L ${CERT_FILE} ] && /bin/ln -fs ${SRC_CERT_FILE} ${CERT_FILE} | |
for idx in $(/usr/bin/seq 0 9); do | |
if [ -L ${HASH_FILE}.${idx} ]; then | |
[ "$(/usr/bin/readlink ${HASH_FILE}.${idx})" = "${SRC_CERT_FILE}" ] && break | |
else | |
/bin/ln -fs ${SRC_CERT_FILE} ${HASH_FILE}.${idx} | |
break | |
fi | |
done | |
/bin/cat ${SRC_CERT_FILE} >> ${CAFILE} | |
done |
FYI: with boot2docker 1.6.2 I don't need to append the files to ca-certificates.crt, they are getting automatically appended.
Great!
@irgeek: You are my HERO. Thank you for this.
Thanks a lot. I was close to giving up.
@irgeek: Thank you. It helped a lot.
@irgeek: Great. Thank you!
If I'm using docker-machine on Windows (10) - how do I integrate this solution? Does this go in ~/.docker/... somewhere so it's persisted across restarts?
Thanks - Ron
IT WORKS!!!!!!!!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Worked here as well, thanks a lot!