KasmVNC/builder
2021-02-18 22:00:34 +13:00
..
startup Rpm: create certificate on postinst, remove on postrm 2021-02-12 18:11:27 +13:00
build_and_deploy_kasm.sh Initial commit 2020-09-20 12:16:44 +00:00
build_www.sh added dockerfile build process for www 2021-01-10 19:03:13 +00:00
build-deb Deb: release numbers (18.04) -> codenames (bionic) 2021-01-28 22:10:46 +13:00
build-deb-inside-docker Merge branch 'master' into create_ubuntu20_package 2021-02-14 18:59:53 +13:00
build-rpm Rpm: automate rpm building with build-rpm 2021-02-11 21:50:14 +13:00
build-rpm-inside-docker Rpm: run rpmlint after building rpm 2021-02-12 23:07:03 +13:00
build-tarball build-tarball: only rebuild www if it was changed 2021-02-16 22:21:48 +13:00
build.sh Rpm: CentOS dfart. Rpm building isn't automated yet. 2021-02-05 23:49:47 +13:00
dockerfile.centos_core.barebones.rpm.test Rpm: run xterm w/o WM in CentOS 7 barebones test 2021-02-18 22:00:34 +13:00
dockerfile.centos_core.build Rpm: CentOS dfart. Rpm building isn't automated yet. 2021-02-05 23:49:47 +13:00
dockerfile.centos_core.rpm.build Rpm: run rpmlint after building rpm 2021-02-12 23:07:03 +13:00
dockerfile.centos_core.rpm.test Rpm: create certificate on postinst, remove on postrm 2021-02-12 18:11:27 +13:00
dockerfile.debian_bullseye.build Deb: add Bullseye support 2021-01-29 21:29:04 +13:00
dockerfile.debian_bullseye.deb.build Deb: add Bullseye support 2021-01-29 21:29:04 +13:00
dockerfile.debian_bullseye.deb.test Deb: add Bullseye support 2021-01-29 21:29:04 +13:00
dockerfile.debian_buster.barebones.deb.test Deb: release numbers (18.04) -> codenames (bionic) 2021-01-28 22:10:46 +13:00
dockerfile.debian_buster.build Deb: release numbers (18.04) -> codenames (bionic) 2021-01-28 22:10:46 +13:00
dockerfile.debian_buster.deb.build Deb: release numbers (18.04) -> codenames (bionic) 2021-01-28 22:10:46 +13:00
dockerfile.debian_buster.deb.test Deb: release numbers (18.04) -> codenames (bionic) 2021-01-28 22:10:46 +13:00
dockerfile.kali_kali-rolling.build Deb: add Kali kali-rolling support 2021-01-28 23:46:21 +13:00
dockerfile.kali_kali-rolling.deb.build Deb: add Kali kali-rolling support 2021-01-28 23:46:21 +13:00
dockerfile.kali_kali-rolling.deb.test Deb: add Kali kali-rolling support 2021-01-28 23:46:21 +13:00
dockerfile.ubuntu1604.build Added build docker images for debian and others 2020-12-24 19:54:58 +00:00
dockerfile.ubuntu_bionic.build Deb: release numbers (18.04) -> codenames (bionic) 2021-01-28 22:10:46 +13:00
dockerfile.ubuntu_bionic.deb.build Deb: release numbers (18.04) -> codenames (bionic) 2021-01-28 22:10:46 +13:00
dockerfile.ubuntu_bionic.deb.test Deb: release numbers (18.04) -> codenames (bionic) 2021-01-28 22:10:46 +13:00
dockerfile.ubuntu_bionic.test Deb: release numbers (18.04) -> codenames (bionic) 2021-01-28 22:10:46 +13:00
dockerfile.ubuntu_focal.build Deb: release numbers (18.04) -> codenames (bionic) 2021-01-28 22:10:46 +13:00
dockerfile.ubuntu_focal.deb.build Deb: release numbers (18.04) -> codenames (bionic) 2021-01-28 22:10:46 +13:00
dockerfile.ubuntu_focal.deb.test Deb: release numbers (18.04) -> codenames (bionic) 2021-01-28 22:10:46 +13:00
dockerfile.ubuntu_focal.test Deb: release numbers (18.04) -> codenames (bionic) 2021-01-28 22:10:46 +13:00
dockerfile.www.build added dockerfile build process for www 2021-01-10 19:03:13 +00:00
os_ver_cli.sh Deb: release numbers (18.04) -> codenames (bionic) 2021-01-28 22:10:46 +13:00
README.md Don't use "sodu docker", just "docker" 2021-01-14 21:25:41 +13:00
test-deb Deb: release numbers (18.04) -> codenames (bionic) 2021-01-28 22:10:46 +13:00
test-deb-barebones Deb: release numbers (18.04) -> codenames (bionic) 2021-01-28 22:10:46 +13:00
test-rpm Rpm: automate rpm building with build-rpm 2021-02-11 21:50:14 +13:00
test-rpm-barebones Rpm: create certificate on postinst, remove on postrm 2021-02-12 18:11:27 +13:00

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