docker-compose.yml 428 B

1234567891011121314151617181920212223
  1. version: '2'
  2. services:
  3. ide:
  4. image: psharkey/intellij:latest
  5. # image: psharkey/netbeans-8.1:latest
  6. environment:
  7. - DISPLAY=novnc:0.0
  8. depends_on:
  9. - novnc
  10. networks:
  11. - x11
  12. novnc:
  13. image: theasp/novnc:latest
  14. environment:
  15. # Adjust to your screen size
  16. - DISPLAY_WIDTH=1600
  17. - DISPLAY_HEIGHT=968
  18. ports:
  19. - "8080:8080"
  20. networks:
  21. - x11
  22. networks:
  23. x11: