From 2afe7b5fa5c4bd99bac9b5636e63cd0359d44157 Mon Sep 17 00:00:00 2001 From: mmcclaskey Date: Sun, 11 Oct 2020 13:33:35 -0400 Subject: [PATCH] Create README.md --- docker/README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 docker/README.md diff --git a/docker/README.md b/docker/README.md new file mode 100644 index 0000000..6412244 --- /dev/null +++ b/docker/README.md @@ -0,0 +1,21 @@ +# Containerized Examples + +These example containers show how to do UI app streaming within Docker containers using KasmVNC. + +## Doom + +What better way to demonstrait containerized app streaming then to stream Doom! The included Dockerfile.ubuntu18.doom file and the source code have everything you need to hit the ground running. + +### Building +```sh +sudo docker build -t kasm/doom -f Dockerfile.ubuntu18.doom . +``` + +### Running +```sh +sudo docker run -it -p 8443:8443 --rm -e "VNC_USER=matt" -e "VNC_PW=password123" kasm/doom:latest +``` + +The environmental variables VNC_USER and VNC_PW set the username and password respectively. The VNC_PW is unset during container startup. + +Now navigate to https://:8443/vnc.html