Sign inSign up

10to7/novnc

By 10to7

Updated about 2 years ago

noVNC X11 alpine container

Image
3

3.5K

10to7/novnc repository overview

Weekly update generator All dependencies are up to date

noVNC docker image

Used for a browser based X11 display.

You can find us on:

Dependencies:

Based on a noVNC docker setup by psharkey, which can be found here.

Example

You can run unix applications that require a $DISPLAY within a docker container.

Below is an example docker-compose.yml opening intelliJ inside a browser on port 8080.

noVNC example gist

version: '3.8'

services:
  ide:
    image: psharkey/intellij:latest
    environment:
      - DISPLAY=novnc:0.0
    depends_on:
      - novnc
  novnc:
    image: 10to7/novnc:latest
    environment:
      # Adjust to your screen size
      - DISPLAY_WIDTH=1600
      - DISPLAY_HEIGHT=968
    ports:
      - "8080:8080"
To run:

docker-compose up -d

In a browser open http://localhost:8080/vnc.html

Tag summary

Content type

Image

Digest

sha256:6a439770a

Size

36.1 MB

Last updated

about 2 years ago

docker pull 10to7/novnc