Coder.com's code-server, PowerShell, and the PowerShell extension for vscode
10K+
A complete PowerShell developer experience - all in a Docker container!

This container image contains:
It's running in an Ubuntu 18.10 container. Once I figure out how to make code-server a bit more portable we can probably support more OS's.
You can find the Dockerfile for this container image on GitHub.
docker pull tylerl0706/powershell-code-serverdocker run -t -p 127.0.0.1:8443:8443 -v "${PWD}:/root/project" tylerl0706/powershell-code-server:stable code-server --allow-http --no-authhttp://localhost:8443 in your browser of choiceThe second command will start the container on port
8443and mount whatever is inPWDallowing you to actually modify the files on your host OS from within the container.
Content type
Image
Digest
Size
269.5 MB
Last updated
over 7 years ago
docker pull tylerl0706/powershell-code-server