noVNC in Docker.
GitHub | GitHub Container Registry | Docker Hub
- Easy to connect. Open browser to connect to display, powered by TigerVNC + noVNC.
- Extensible. Use baseimage-docker as base image, with built-in runit.
- Lightweight. Use Openbox as WM, no SM/DE.
- Multi-Architecture. Supports amd64, arm64, armv7 and riscv64.
docker run --rm -it --security-opt seccomp=unconfined -p 6080:80 -p 5901 -e VNC_PASSWD=password ifrstr/novncdocker compose updocker stack deploy --compose-file docker-compose.yml novncNavigate to http://localhost:6080 and login using password.
vncviewer :1 # Connect to 127.0.0.1:5901Start bash with services:
docker run --rm -it -p 6080:80 -p 5901 -e VNC_PASSWD=password ifrstr/novnc /sbin/my_init -- bash -lStart bash without services:
docker run --rm -it -p 6080:80 -p 5901 -e VNC_PASSWD=password ifrstr/novnc bashCreate a builder:
docker buildx create --name container --driver=docker-containerBuild image:
BUILD_DOCKER_BUILDER=container ./build.shThis image is NOT SECURE because VNC is not a secure protocol. DO NOT use this image directly over the Internet. Wrap the traffic in tunnel.