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 df92791550 Gitlab CI: build all distros if branch has "release" or "testing" in it 4 years ago
..
startup Deb: make easy-start script easier to modify 4 years ago
README.md Don't use "sodu docker", just "docker" 4 years ago
build-and-test-deb Move build-and-test-* to builder/ 4 years ago
build-and-test-rpm Move build-and-test-* to builder/ 4 years ago
build-deb Deb: release numbers (18.04) -> codenames (bionic) 4 years ago
build-deb-inside-docker Merge branch 'master' into create_ubuntu20_package 4 years ago
build-distro Gitlab CI: build all distros if branch has "release" or "testing" in it 4 years ago
build-rpm Rpm: automate rpm building with build-rpm 4 years ago
build-rpm-inside-docker Rpm: run rpmlint after building rpm 4 years ago
build-tarball build-tarball: only rebuild www if it was changed 4 years ago
build.sh tarball: include Xvnc.1 man page 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.centos_core.barebones.rpm.test Rpm: run xterm w/o WM in CentOS 7 barebones test 4 years ago
dockerfile.centos_core.build Rpm: CentOS dfart. Rpm building isn't automated yet. 4 years ago
dockerfile.centos_core.rpm.build Rpm: run rpmlint after building rpm 4 years ago
dockerfile.centos_core.rpm.test Rpm: group kasmvnc -> kasmvnc-cert 4 years ago
dockerfile.debian_bullseye.build Deb: add Bullseye support 4 years ago
dockerfile.debian_bullseye.deb.build Deb: fix build dependencies install 4 years ago
dockerfile.debian_bullseye.deb.test Deb: test images have lsb-release now 4 years ago
dockerfile.debian_buster.barebones.deb.test Code formatting 4 years ago
dockerfile.debian_buster.build Deb: release numbers (18.04) -> codenames (bionic) 4 years ago
dockerfile.debian_buster.deb.build Deb: fix build dependencies install 4 years ago
dockerfile.debian_buster.deb.test Deb: test images have lsb-release now 4 years ago
dockerfile.fedora_thirtythree.barebones.rpm.test Packages: Ubuntu 20 and Fedora 33 barebones tests 4 years ago
dockerfile.fedora_thirtythree.build tarball: include Xvnc.1 man page 4 years ago
dockerfile.fedora_thirtythree.rpm.build tarball: include Xvnc.1 man page 4 years ago
dockerfile.fedora_thirtythree.rpm.test Rpm: group kasmvnc -> kasmvnc-cert 4 years ago
dockerfile.kali_kali-rolling.build Deb: add Kali kali-rolling support 4 years ago
dockerfile.kali_kali-rolling.deb.build Deb: fix build dependencies install 4 years ago
dockerfile.kali_kali-rolling.deb.test Deb: test images have lsb-release now 4 years ago
dockerfile.ubuntu1604.build Added build docker images for debian and others 4 years ago
dockerfile.ubuntu_bionic.build Deb: release numbers (18.04) -> codenames (bionic) 4 years ago
dockerfile.ubuntu_bionic.deb.build Deb: fix build dependencies install 4 years ago
dockerfile.ubuntu_bionic.deb.test Deb: test images have lsb-release now 4 years ago
dockerfile.ubuntu_bionic.test Deb: release numbers (18.04) -> codenames (bionic) 4 years ago
dockerfile.ubuntu_focal.barebones.deb.test Packages: Ubuntu 20 and Fedora 33 barebones tests 4 years ago
dockerfile.ubuntu_focal.build Deb: release numbers (18.04) -> codenames (bionic) 4 years ago
dockerfile.ubuntu_focal.deb.build Deb: fix build dependencies install 4 years ago
dockerfile.ubuntu_focal.deb.test Deb: fix Ubuntu Focal (vnc_startup.sh XFCE start issue) 4 years ago
dockerfile.ubuntu_focal.test Deb: release numbers (18.04) -> codenames (bionic) 4 years ago
dockerfile.www.build added dockerfile build process for www 4 years ago
os_ver_cli.sh Deb: release numbers (18.04) -> codenames (bionic) 4 years ago
test-deb Add verbose logging via KASMVNC_VERBOSE_LOGGING env var 4 years ago
test-deb-barebones Deb: update Debian Buster barebones test to work 4 years ago
test-rpm Add verbose logging via KASMVNC_VERBOSE_LOGGING env var 4 years ago
test-rpm-barebones Deb/rpm: change test user password to "foobar" 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