Ready to run C++ development environment, comes with Clang, Make & VSCode accessible via VNC
10K+
copy script, set password and run it : <.script.sh> <optional_volume_name>
Connect vnc to port 7800, use the password that you have modified from the script.
The /root volume is persistent across multiple launches.
to launch Visual Studio Code , run vscode
#!/bin/bash
# SET YOUR PASSWORD HERE
VNCPASS="password"
VOLUME=""
if [ ! -z $1 ];then
echo "setting cvol"
VOLUME="-v $1:/root"
else
echo "defaulting to codevol"
VOLUME="-v codevol:/root"
fi
docker run -p 7800:7800 -e VNCPASS=$VNCPASS $VOLUME -p 8888:8888 --rm rebooting/xrdpvscode
Content type
Image
Digest
Size
724.3 MB
Last updated
over 8 years ago
docker pull rebooting/xrdpvscode