About https and ssl

Solved Solved Solved Solved

1 Like

Please don’t alter the actual post, this way people can’t see the problem and also not how it was solved.

guys ssl error
when running

docker-compose up

SSL error: [SSL: TLSV1_ALERT_PROTOCOL_VERSION] tlsv1 alert protocol version (_ssl.c:661)

i tried installing openssl and new version of python now this error

WARNING: The “TLSV1_2” protocol is unavailable. You may need to update your version of Python or OpenSSL. Falling back to TLSv1 (default).
WARNING: The “TLSV1_2” protocol is unavailable. You may need to update your version of Python or OpenSSL. Falling back to TLSv1 (default).
ERROR: SSL error: [SSL: TLSV1_ALERT_PROTOCOL_VERSION] tlsv1 alert protocol version (_ssl.c:661)

(windows 10 docker toolbox)

:smiley:
got the fix
Run these before running docker-compose up

export COMPOSE_TLS_VERSION=TLSv1_2
export DOCKER_TLS_VERIFY=1

1 Like