Sign inSign up

techthinkerorg/novnc

By techthinkerorg

Updated about 2 years ago

Image
Developer tools
Operating systems
1

1.5K

techthinkerorg/novnc repository overview

NoVNC

Its a noVNC server that can allow you to share any gui docker or system app through it.

Version

  • v1.0.0 is no password required to login over vnc
  • v2.0.0 is required password to login, default password is "password"

Docker-Compose

version: '2'
services:
  ide:
    image: psharkey/intellij:latest
    environment:
      - DISPLAY=novnc:0.0
    depends_on:
      - novnc
    networks:
      - x11
  novnc:
    image: techthinkerorg/novnc:v2.0.0
    environment:
      # Adjust to your screen size
      - DISPLAY_WIDTH=1280
      - DISPLAY_HEIGHT=720
      - RUN_XTERM=no
      # Default password is "password"
      # Default login required value is "no"
      - LOGIN_REQUIRED=yes
      - X11VNC_PASSWORD=password
    ports:
      - "6080:6080"
    networks:
      - x11
networks:
  x11:

Note: You need to export DISPLAY environment where you want to run your application. If you are running inside host ubuntu then, export DISPLAY=<docker-ip>:0.0 after this run application. If you are running using another container then you can use similar in the docker environment.

Tag summary

Content type

Image

Digest

sha256:2e45fc145

Size

239.3 MB

Last updated

about 2 years ago

docker pull techthinkerorg/novnc:v2.0.0