May 2017
Beginner
300 pages
7h 26m
English
In this section, we will emulate the concept of running Docker Registry securely using SSL. In the current scenario of running Docker Registry on localhost, Docker Engine needs to be secured using TLS.
Follow these steps to run Docker Registry securely:
$ mkdir certs $ openssl req -newkey rsa:4096 -nodes -sha256 \ -keyout certs/domain.key -x509 -days 365 -out \ certs/domain.crt Generating a 4096 bit RSA private key .....................++ ........................................ .........++ writing new private key to ...Read now
Unlock full access