Last active
November 30, 2017 14:29
-
-
Save marcosnils/761a951b54ec62dd758d9412d9de3b71 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
ide: | |
image: psharkey/eclipse:latest | |
environment: | |
- DISPLAY=novnc:0.0 | |
depends_on: | |
- novnc | |
networks: | |
- x11 | |
novnc: | |
image: psharkey/novnc:latest | |
environment: | |
# Adjust to your screen size | |
- DISPLAY_WIDTH=1024 | |
- DISPLAY_HEIGHT=768 | |
ports: | |
- "8080:8080" | |
networks: | |
- x11 | |
networks: | |
x11: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment