๐ Launch a container on docker in GUI mode
๐ Run any GUI software on the container
I am going to run the Mozilla FiRefox on top of the docker container
Step-1: Check that you have docker installed in your OS by using
rpm -q docker-ce

Step-2: Now I created a dockerfile inside a folder named ws3 and the name of the file is dockerfile
I have written the following command inside the dockerfile

Step-3: My next step is to I want to build the dockerfile ,
So, for building the dockerfile the command used is as follows:
docker build -t myimage:1.0 .
I used โ . โas I am inside the current directory


My image is successfully built..
Step-4: Now use the docker run command to run the dockerfile
docker run -it โ net-host -e DISPLAY myimage:1.0

