đHow to run GUI application on the Docker container

- For running any GUI application on Docker container the only prerequisite is Docker installed in OS.
First of all,We use âsystemctl status dockerâ command under systemd to view the status of the given service on Linux operating systems.

Now, letâs check Docker images and use it for our task.
After the install one GUI application .I am installing jupyter notebook on firefox browser

Now the command is quite messy right ? Let us understand it properly:
- run :- is used to start our container
- -it :- this keyword provides us a interactive terminal
- â net=host :- use to launch the container with host network.
- â env=âDisplayâ :- This is use to share the display of the host to the container
After the successful installation letâs start firefox.


Now we launch Jupyter Notebook
âpip install jupyterâ

âjupyter notebook â allow-rootâ

& the GUI isâŚâŚâŚ
