Skip to content

Ubuntu based docker image for running secure VNC server on browser

Notifications You must be signed in to change notification settings

eminmuhammadi/winvnc

Repository files navigation

winvnc

Ubuntu based docker image for running secure VNC server on browser.

winvnc screenshot

Pull the image

docker pull eminmuhammadi/winvnc:latest

Run the container

Simple usage

docker run -it --rm \
    --name winvnc \
    -p 80:8080/tcp \
    -p 443:8443/tcp \
    --memory="1g" \
    --memory-swap="2g" \
    --cpus="1.0" \
    -e VNC_PASSWORD=MY_WEAK_PASSWORD \
    -e HTTP_PORT=8080 \
    -e HTTPS_PORT=8443 \
    -e TZ=UTC \
    eminmuhammadi/winvnc:latest

Using gpu

docker run -it --rm \
    --name winvnc \
    -p 80:8080/tcp \
    -p 443:8443/tcp \
    --memory="1g" \
    --memory-swap="2g" \
    --cpus="1.0" \
    -e VNC_PASSWORD=MY_WEAK_PASSWORD \
    -e HTTP_PORT=8080 \
    -e HTTPS_PORT=8443 \
    -e TZ=UTC \
    --gpus all \
    eminmuhammadi/winvnc:latest