DERs/Docker: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

2 June 2023

  • curprev 19:1219:12, 2 June 2023Admin talk contribs 2,098 bytes +2,098 Created page with "== Configure Proxy Server in Docker == mkdir -p /etc/systemd/system/docker.service.d cat > /etc/systemd/system/docker.service.d/http-proxy.conf << "EOF" [Service] Environment="HTTPS_PROXY=https://192.168.1.73:3128/" Environment="HTTP_PROXY=http://192.168.1.73:3128/" Environment="FTP_PROXY=ftp://192.168.1.73:3128/" Environment="NO_PROXY=localhost,127.0.0.0/8,dersllc.com" EOF sudo systemctl daemon-reload #sudo systemctl show --property Environment docker sudo..."