-
Notifications
You must be signed in to change notification settings - Fork 238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Proxy Settings #927
Comments
Same problem here VSCode Settings:
After choosing a Template, the connection failed
Maybe the proxy is ignored for HTTPS Connections? |
+1 |
I can only report how we handle everything: For VSCode, we do not have any proxy settings, we let it use the environment variables To add the proxy during build-time, we simply modified the Docker config ( {
"proxies": {
"default": {
"httpProxy": "http://proxy.ourdomain.de:3128",
"httpsProxy": "http://proxy.ourdomain.de:3128",
"noProxy": "localhost,127.0.0.1,local,ourdomain.de"
}
}
} You could probably also just add this information to the
Side-Note: As our proxy needs authentication, we usually just install a local proxy (px in Windows) which takes care of the authorization and then just use
Run-Time:
|
I found this issue:
microsoft/vscode-remote-release#6464
If I want to Build a devcontainer I have to export http_proxy as ENV, otherwise I cannot install the feature.
I am behind a corporate Proxy. Docker is configured correctly all normal build are fine.
How can I use the Proxy for installing a feature without export a ENV variable? Use the Docker Proxy...
The text was updated successfully, but these errors were encountered: