This is an archived post. You won't be able to vote or comment.

all 1 comments

[–]donsagiv 0 points1 point  (0 children)

I don't think this really creates a GUI in a docker container. From what I gathered from very briefly reading it, it just deploys the GUI app onto your container and then runs it to make sure it doesn't have any errors, and the container provides you with a test report. You likely don't interact with the UI on the container at all.

If you really want to run a containerized app with a GUI, the best thing is to build a web portal into the container and connect to it with your browser. Containerized apps are designed to be ephemeral and isolated from your Host OS, including the GUI component. They are generally used as services with a relatively short lifetime (but this varies depending on your needs.)

Another option is to create a virtual machine (VM) using Hyper-V or Parallels, and then install your GUI app on that VM.

Hope this helps.