vnc / docker-compose.yml
dracoox's picture
Upload folder using huggingface_hub
828977a verified
raw
history blame
425 Bytes
version: '2'
services:
ide:
image: psharkey/intellij:latest
# image: psharkey/netbeans-8.1:latest
environment:
- DISPLAY=novnc:0.0
depends_on:
- novnc
networks:
- x11
novnc:
image: theasp/novnc:latest
environment:
# Adjust to your screen size
- DISPLAY_WIDTH=3840
- DISPLAY_HEIGHT=2160
ports:
- "80:80"
networks:
- x11
networks:
x11: