In this video I am demonstrating how you can stream docker containers
to your web browser with Kasm Workspaces and work in isolation.
The demonstration installation is done on a VM, but the same instructions
can be used to install Kasm in the cloud as well.
Kasm: https://www.kasmweb.com/
Commands used in the demo (Ubuntu 20.04):
Create swap partition (may be different for other Linux distros!):
sudo fallocate -l 1g /mnt/1GiB.swap
sudo chmod 600 /mnt/1GiB.swap
sudo mkswap /mnt/1GiB.swap
sudo swapon /mnt/1GiB.swap
echo '/mnt/1GiB.swap swap swap defaults 0 0' | sudo tee -a /etc/fstab
Download and install Kasm:
wget https://kasm-static-content.s3.amazonaws.com/kasm_release_1.10.0.238225.tar.gz
tar -xf kasm_relea*.tar.gz
cd kasm_release
sudo ./install.sh
Happy coding!