The Docker daemon uses This example overrides the default In the setup, you need to add this configuration in the Docker systemd service file If you use an HTTP proxy server, a systemd plugin directory will be created for the docker service: mkdir -p /etc/systemd/system/docker.service.d Create a file called [Service] Environment="HTTP_PROXY=http://proxy.example.com:80/" Alternatively, if you use an HTTPS proxy server, create another file called [Service] Environment="HTTPS_PROXY=https://proxy.example.com:443/" When configuring non-proxy addresses for Docker, you can specify them through the [Service] Environment="HTTP_PROXY=http://proxy.example.com:80/" "NO_PROXY=localhost,127.0.0.1,docker-registry.somecorporation.com" Or, HTTPS proxy server configuration: [Service] Environment="HTTPS_PROXY=https://proxy.example.com:443/" "NO_PROXY=localhost,127.0.0.1,docker-registry.somecorporation.com" Re-read the service configuration file: systemctl daemon-reload Restart Docker: systemctl restart docker Verify that the configuration was loaded: systemctl show --property=Environment docker refer to: https://docs.docker.com/config/daemon/systemd/ The above is the details of setting up Docker proxy under CentOS 7 (environment variable configuration of Systemd service under Linux). For more information about Docker configuration of systemd service, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Examples of new selectors in CSS3
>>: Several things to note when making a web page
MySQL replication table detailed explanation If w...
introduction The previous article introduced the ...
Why do we need virtual dom? Virtual DOM is design...
Table of contents K8S Master Basic Architecture P...
The reason is this I wanted to deploy a mocker pl...
This article example shares the specific code of ...
Hyperlinks enable people to jump instantly from pa...
MySQL itself was developed based on the file syst...
Table of contents Preface MySQL master-slave repl...
Table of contents Written in front Requirements A...
Why mention textarea specifically? Because the tex...
What is a transaction? A transaction is a logical...
Preface The language classification of SQL mainly...
Writing a Dockerfile Taking the directory automat...
This article example shares the specific code of ...