1.5K
Its a noVNC server that can allow you to share any gui docker or system app through it.
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.
Content type
Image
Digest
sha256:2e45fc145…
Size
239.3 MB
Last updated
about 2 years ago
docker pull techthinkerorg/novnc:v2.0.0