copy script, set password and run it : <.script.sh> <optional_volume_name>
Accessing it Connect ssh , use the password that you have modified from the script.
Map /home/user01 to a local volume for persistence.
to launch Visual Studio Code , run vscode
script #!/bin/bash VOLUME="" if [ ! -z $1 ];then echo "setting cvol" VOLUME="-v $1:/home/user01" else echo "defaulting to codevol" VOLUME="-v gouser01:/home/user01" fi docker run -it -p 2200:22 $VOLUME --rm rebooting/ubuntudevgo
Content type
Image
Digest
Size
751.6 MB
Last updated
over 8 years ago
docker pull rebooting/ubuntudevgo