Sign inSign up

rebooting/xrdpvscode

By rebooting

•Updated over 8 years ago

Ready to run C++ development environment, comes with Clang, Make & VSCode accessible via VNC

Image
0

10K+

rebooting/xrdpvscode repository overview

⁠Starting it

copy script, set password and run it : <.script.sh> <optional_volume_name>

⁠Accessing it

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

⁠script


#!/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

Tag summary

Content type

Image

Digest

Size

724.3 MB

Last updated

over 8 years ago

docker pull rebooting/xrdpvscode