Unable to display GUI application from Windows container

oumaima idoudi 6 Reputation points
2022-05-10T14:55:15.14+00:00

I need to use Docker / Windows containers on Windows 2019 Server and prepare it Windows applications to run on it.

Is there a way to access a Windows Container via GUI?

is there a windows image that supports GUI applications ?

.NET
.NET
Microsoft Technologies based on the .NET software framework.
3,367 questions
Windows Server
Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
12,113 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Limitless Technology 39,351 Reputation points
    2022-05-13T07:22:51.717+00:00

    Hi there,

    Most of the Windows image supports docker. To run a container, you first install a base image, which provides a foundational layer of operating system services to your container. Then you create and run a container image, which is based upon the base image.

    Container Base Images https://learn.microsoft.com/en-us/virtualization/windowscontainers/manage-containers/container-base-images

    Get started: Run your first Windows container https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/run-your-first-container

    We can run any application in Docker as long as it can be installed and executed unattended, although we can not see the GUI.

    -------------------------------------------------------------------------------------------------------------------------------------------------------------

    --If the reply is helpful, please Upvote and Accept it as an answer--