Base noVNC with added security features for https://cometa.rocks/
1.0K
This image is based on noVNC and contains basic security features for co.meta and it will/should not be used as a daily driver. If you are looking for base noVNC image to test on maybe try out theasp's noVNC or build your own.
If you are looking for a base noVNC image here is a small Dockerfile that would spin up noVNC in no time
$ mkdir noVNC_base && cd noVNC_base
$ cat <<EOF > Dockerfile
# get a base image
FROM python:3.9
# clone noVNC repository
RUN git clone https://github.com/novnc/noVNC.git
# set working dir to noVNC dir
WORKDIR noVNC
# start noVNC
CMD ["./utils/novnc_proxy", "--listen", "80"]
EOF
$ docker build . -t novnc_base:latest
$ cd -
$ docker run -p "8080:80" novnc_base:latest
Visit: http://localhost:8080/
To noVNC team for providing such a great product.
Content type
Image
Digest
sha256:366584a1f…
Size
184.1 MB
Last updated
almost 2 years ago
docker pull cometa/novnc