How to open Ubuntu GUI inside a Docker image
I have downloaded the Ubuntu image inside Docker on Windows. I can run Ubuntu by: docker run -it ubuntu I only see root , but I don't see the Ubuntu GUI. How do I install or configure the GUI for that image and run applications on that GUI like we run in a VM? VonC Generally, the approach for developing with Docker is to keep the IDE on the workstation, and build images with the binary produced from the sources. You can find many example of such a workflow (local compilation, deployment in Docker containers) in domeide.github.io/ (Docker meets the IDE!) For example: Docker Tools for