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.
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.
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"
docker-compose up -d
In a browser open http://localhost:8080/vnc.html
Content type
Image
Digest
sha256:6a439770a…
Size
36.1 MB
Last updated
about 2 years ago
docker pull 10to7/novnc