Docker without https / SSL verification?

Is there a way to disable all https / ssl features when retrieving images from the public docker registry?

I am stuck behind a corporate firewall that swirls all https traffic. (I only get invalid certificates ...)

+4
source share
1 answer

In /etc/default/dockeryou can specify an HTTP proxy. If you can use an HTTP proxy, you must set this to resolve certificate issues.

When looking at things, you can also define an environment variable http_proxythat docker will be able to read at startupdocker pull

-1
source

Source: https://habr.com/ru/post/1546828/


All Articles