Are you working in restricted corporate environment? Are you looking for how to run Docker behind the firewall.You can always specify an HTTP proxy for docker to use via an environment variable.
First, create a directory for drop-in configuration for docker:
#mkdir /etc/systemd/system/docker.service.d
Now, create a file called /etc/systemd/system/docker.service.d/http-proxy.conf that adds the environment variable:
[Service]
Environment=”HTTP_PROXY=http://proxy.example.com:8080″
To apply the change, reload the unit and restart docker:
systemctl daemon-reload
systemctl restart docker
Comments are closed.