You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
KasmVNC/builder
Dmitry Maksyoma 5ffe76f08d Deb: don't install libjpeg-dev on deb test image
Dependencies should be pulled by the package.
4 years ago
..
startup Deb: use /etc/kasmvnc/server.pem cert in builder/test-deb 4 years ago
README.md Don't use "sodu docker", just "docker" 4 years ago
build-deb Don't use "sodu docker", just "docker" 4 years ago
build-deb-inside-docker Deb: automated build chain draft ready 4 years ago
build-tarball Don't use "sodu docker", just "docker" 4 years ago
build.sh Added build docker images for debian and others 4 years ago
build_and_deploy_kasm.sh Initial commit 5 years ago
build_www.sh added dockerfile build process for www 4 years ago
dockerfile.centos7.build Added build docker images for debian and others 4 years ago
dockerfile.debian10.build Added build docker images for debian and others 4 years ago
dockerfile.ubuntu1604.build Added build docker images for debian and others 4 years ago
dockerfile.ubuntu1804.build Added build docker images for debian and others 4 years ago
dockerfile.ubuntu1804.deb.build Deb: build-deb now builds a .deb for Ubuntu 18 4 years ago
dockerfile.ubuntu1804.deb.test Deb: don't install libjpeg-dev on deb test image 4 years ago
dockerfile.ubuntu1804.test Added build docker images for debian and others 4 years ago
dockerfile.ubuntu2004.build Added build docker images for debian and others 4 years ago
dockerfile.ubuntu2004.test Added build docker images for debian and others 4 years ago
dockerfile.www.build added dockerfile build process for www 4 years ago
test-deb Fix auth error and build permissions 4 years ago

README.md

REQIUREMENTS

Docker CE

Build the www webpack

docker build -t kasmweb/www -f builder/dockerfile.www.build .
docker run -it --rm -v $PWD/builder/www:/build kasmweb/www:latest

build the docker image

    cd /src_code_root
    docker build -t kasmvncbuilder:18.04 -f builder/dockerfile.ubuntu1804.build .

Run the builder

    mkdir -p builder/build
    docker run -v /tmp:/build --rm  kasmvncbuilder:18.04
    cp /tmp/build/kasmvnc.ubuntu_18.04.tar.gz builder/build/

Build test desktop container

    cd builder
    docker build -t kasmvnctester:18.04 -f dockerfile.ubuntu1804.test .

run an instance of the new destkop

docker run -it -p 443:8443 --rm -e "VNC_USER=username" -e "VNC_PW=password123"  kasmvnctester:18.04

open browser and point to https:///vnc.html The username and password were set in the docker run command