Created
August 6, 2023 10:40
-
-
Save meysampg/d38c1be2e21f80b0087c832fc1783698 to your computer and use it in GitHub Desktop.
Set proxy for docker repository by creating /etc/apt/apt.conf.d/99proxy with this content
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Acquire::http::Proxy { | |
download.docker.com "http://localhost:8118"; | |
}; | |
Acquire::https::Proxy { | |
download.docker.com "http://localhost:8118"; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment