-
Notifications
You must be signed in to change notification settings - Fork 522
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
Support for ${env:HOME} not working #1961
Labels
Milestone
Comments
This is primarily due to #1413 which is blocked by microsoft/vscode#81007. We had to implement a custom variable resolver because |
This is now fixed in Docker extension version 1.7.0. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I feel like I have the same issue as #1094, on version 1.1.0. My docker run task looks like:
I get the same terminal error:
The resulting command generated by VS Code is (obviously without the line-wrapping for convenience):
Note the unexpanded
${env:HOME}
. If I fix that by replacing it with$HOME
on a VS Code terminal and run it manually, it launches the docker container as expected.The text was updated successfully, but these errors were encountered: