noVNC in Docker. https://github.com/ifrstr/docker-novnc
3.3K
noVNC in Docker.
GitHub | GitHub Container Registry | Docker Hub
docker run --rm -it -p 6080:80 -p 5901 -e VNC_PASSWD=password ifrstr/novnc
docker compose up
docker stack deploy --compose-file docker-compose.yml novnc
Navigate to http://localhost:6080 and login using password.
vncviewer :1 # Connect to 127.0.0.1:5901
Start bash with services:
docker run --rm -it -p 6080:80 -p 5901 -e VNC_PASSWD=password ifrstr/novnc /sbin/my_init -- bash -l
Start bash without services:
docker run --rm -it -p 6080:80 -p 5901 -e VNC_PASSWD=password ifrstr/novnc bash
Create a builder:
docker buildx create --name container --driver=docker-container
Build image:
BUILD_DOCKER_BUILDER=container ./build.sh
This 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.
Content type
Image
Digest
sha256:af037c7e4…
Size
297.6 MB
Last updated
over 3 years ago
docker pull ifrstr/novnc