{"id":15543,"date":"2023-02-27T22:17:56","date_gmt":"2023-02-27T19:17:56","guid":{"rendered":"https:\/\/kifarunix.com\/?p=15543"},"modified":"2024-03-10T08:14:37","modified_gmt":"2024-03-10T05:14:37","slug":"how-to-install-docker-desktop-on-kali-linux","status":"publish","type":"post","link":"https:\/\/kifarunix.com\/how-to-install-docker-desktop-on-kali-linux\/","title":{"rendered":"How to Install Docker Desktop on Kali Linux"},"content":{"rendered":"\n<p>How can you install Docker desktop on Linux? In this tutorial, you will learn how to install Docker desktop on Kali Linux. Docker Desktop is an easy-to-install program for Mac, Linux, or Windows environments which offers a straightforward interface that lets you manage your containers, apps, and images from your machine.<\/p>\n\n\n\n<div class=\"wp-block-rank-math-toc-block\" id=\"rank-math-toc\"><h2>Table of Contents<\/h2><nav><ul><li><a href=\"#installing-docker-desktop-on-kali-linux\">Installing Docker Desktop on Kali Linux<\/a><ul><li><a href=\"#prerequisites\">Prerequisites<\/a><\/li><li><a href=\"#install-docker-apt-repository\">Install Docker APT Repository<\/a><\/li><li><a href=\"#installing-docker-desktop-on-kali-linux-1\">Installing Docker Desktop on Kali Linux<\/a><\/li><li><a href=\"#running-containers\">Running containers<\/a><\/li><li><a href=\"#configure-docker-desktop-on-kali-linux\">Configure Docker Desktop on Kali Linux<\/a><ul><li><a href=\"#general-tab\">General tab<\/a><\/li><li><a href=\"#resources-tab\">Resources tab<\/a><\/li><\/ul><\/li><\/ul><\/li><li><a href=\"#uninstalling-docker-desktop-on-kali-linux\">Uninstalling Docker Desktop on Kali Linux<\/a><\/li><\/ul><\/nav><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"installing-docker-desktop-on-kali-linux\">Installing Docker Desktop on Kali Linux<\/h2>\n\n\n\n<p>The steps below outline how to Docker Desktop on Kali Linux.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"prerequisites\">Prerequisites<\/h3>\n\n\n\n<p>Check the <a href=\"https:\/\/docs.docker.com\/desktop\/install\/linux-install\/#system-requirements\" target=\"_blank\" rel=\"noreferrer noopener\">requirements<\/a> for installing Docker Desktop before you can proceed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"install-docker-apt-repository\">Install Docker APT Repository<\/h3>\n\n\n\n<p>Once you have all the requirements in place;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Update your system packages.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Run the following command to install the required packages.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt -y install apt-transport-https ca-certificates curl software-properties-common<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Next, add the Debian (Kali is Debian based) Docker repository using the command below.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>curl -fsSL https:\/\/download.docker.com\/linux\/debian\/gpg | \\\nsudo gpg --dearmor -o \/etc\/apt\/trusted.gpg.d\/docker-archive-keyring.gpg<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>echo \\\n\"deb &#91;arch=amd64] https:\/\/download.docker.com\/linux\/debian bullseye stable\" | \\\nsudo tee \/etc\/apt\/sources.list.d\/docker.list<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Then install Docker.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install docker-ce docker-ce-cli containerd.io uidmap<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ensure Docker service is running;<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>systemctl status docker<\/code><\/pre>\n\n\n\n<pre class=\"scroll-box\"><code>\u25cf docker.service - Docker Application Container Engine\n     Loaded: loaded (\/lib\/systemd\/system\/docker.service; enabled; vendor preset: enabled)\n     Active: active (running) since Mon 2023-02-27 13:45:50 EST; 1min 10s ago\nTriggeredBy: \u25cf docker.socket\n       Docs: https:\/\/docs.docker.com\n   Main PID: 31797 (dockerd)\n      Tasks: 7\n     Memory: 30.1M\n        CPU: 231ms\n     CGroup: \/system.slice\/docker.service\n             \u2514\u250031797 \/usr\/bin\/dockerd -H fd:\/\/ --containerd=\/run\/containerd\/containerd.sock\n\nFeb 27 13:45:50 kali dockerd[31797]: time=\"2023-02-27T13:45:50.010221210-05:00\" level=info msg=\"[core] [Channel #4 SubChannel #5] Subchannel Connectivity change to READY\" module=grpc\nFeb 27 13:45:50 kali dockerd[31797]: time=\"2023-02-27T13:45:50.010326868-05:00\" level=info msg=\"[core] [Channel #4] Channel Connectivity change to READY\" module=grpc\nFeb 27 13:45:50 kali dockerd[31797]: time=\"2023-02-27T13:45:50.077018506-05:00\" level=info msg=\"Loading containers: start.\"\nFeb 27 13:45:50 kali dockerd[31797]: time=\"2023-02-27T13:45:50.266661694-05:00\" level=info msg=\"Default bridge (docker0) is assigned with an IP address 172.17.0.0\/16. Daemon option --bip can be used to set a preferred IP address\"\nFeb 27 13:45:50 kali dockerd[31797]: time=\"2023-02-27T13:45:50.370958613-05:00\" level=info msg=\"Loading containers: done.\"\nFeb 27 13:45:50 kali dockerd[31797]: time=\"2023-02-27T13:45:50.418416285-05:00\" level=info msg=\"Docker daemon\" commit=bc3805a graphdriver=overlay2 version=23.0.1\nFeb 27 13:45:50 kali dockerd[31797]: time=\"2023-02-27T13:45:50.418766947-05:00\" level=info msg=\"Daemon has completed initialization\"\nFeb 27 13:45:50 kali dockerd[31797]: time=\"2023-02-27T13:45:50.458777536-05:00\" level=info msg=\"[core] [Server #7] Server created\" module=grpc\nFeb 27 13:45:50 kali systemd[1]: Started Docker Application Container Engine.\nFeb 27 13:45:50 kali dockerd[31797]: time=\"2023-02-27T13:45:50.466014891-05:00\" level=info msg=\"API listen on \/run\/docker.sock\"\n\n<\/code><\/pre>\n\n\n\n<p>If not running, start it;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl start docker<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>After the Docker installation, add your user account to the <strong><code>docker<\/code><\/strong> group using the following command.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo usermod -aG docker $USER<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"installing-docker-desktop-on-kali-linux-1\">Installing Docker Desktop on Kali Linux<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Navigate to the Docker Desktop <a href=\"https:\/\/docs.docker.com\/desktop\/release-notes\/\" target=\"_blank\" rel=\"noreferrer noopener\">download page<\/a> and get the latest Linux DEB download link and download it using <code>wget<\/code> the command as shown below.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>wget https:\/\/desktop.docker.com\/linux\/main\/amd64\/docker-desktop-4.16.2-amd64.deb<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Install Docker Desktop using the following command.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install .\/docker-desktop-*-amd64.deb<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>To check the version of the binaries run the following commands.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>docker compose version<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>docker --version<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>docker version<\/code><\/pre>\n\n\n\n<p>Sample output<\/p>\n\n\n\n<pre class=\"scroll-box\"><code>Client: Docker Engine - Community\n Version:           23.0.1\n API version:       1.42\n Go version:        go1.19.5\n Git commit:        a5ee5b1\n Built:             Thu Feb  9 19:46:54 2023\n OS\/Arch:           linux\/amd64\n Context:           default\n\nServer: Docker Engine - Community\n Engine:\n  Version:          23.0.1\n  API version:      1.42 (minimum version 1.12)\n  Go version:       go1.19.5\n  Git commit:       bc3805a\n  Built:            Thu Feb  9 19:46:54 2023\n  OS\/Arch:          linux\/amd64\n  Experimental:     false\n containerd:\n  Version:          1.6.18\n  GitCommit:        2456e983eb9e37e47538f59ea18f2043c9a73640\n runc:\n  Version:          1.1.4\n  GitCommit:        v1.1.4-0-g5fd4c4d\n docker-init:\n  Version:          0.19.0\n  GitCommit:        de40ad0\n<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>After the installation, launch Docker Desktop from the application menu as shown below.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1237\" height=\"784\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/02\/launch-docker-desktop-kali.png\" alt=\"How to Install Docker Desktop on Kali Linux\" class=\"wp-image-15546\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/02\/launch-docker-desktop-kali.png?v=1677524067 1237w, https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/02\/launch-docker-desktop-kali-768x487.png?v=1677524067 768w\" sizes=\"(max-width: 1237px) 100vw, 1237px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>And that is it on installing Docker Desktop. You can also launch Docker Desktop from the terminal using the command below.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>systemctl --user start docker-desktop<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>To start Docker Desktop on system boot up run the command below.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>systemctl --user enable docker-desktop<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Similarly, you can run the following command to stop Docker Desktop.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>systemctl --user stop docker-desktop<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Click the Accept button as shown below to accept the service agreement.<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"877\" height=\"587\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/02\/launch-docker-desktop.png\" alt=\"How to Install Docker Desktop on Kali Linux\" class=\"wp-image-15547\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/02\/launch-docker-desktop.png?v=1677524104 877w, https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/02\/launch-docker-desktop-768x514.png?v=1677524104 768w\" sizes=\"(max-width: 877px) 100vw, 877px\" \/><figcaption class=\"wp-element-caption\">Install and Configure Docker Desktop on kali linux<\/figcaption><\/figure><\/div>\n\n\n<ul class=\"wp-block-list\">\n<li>Wait for it to start.<\/li>\n\n\n\n<li>If you decided to run Docker desktop on VirtualBox VM, be sure to enable nested virtualization for that specific VM. Otherwise, when you try to start Docker Desktop, you will see <strong>Docker Desktop stopped\u2026<\/strong><\/li>\n\n\n\n<li>To enable nested virtualization for specific VM, poweroff the VM and run;<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>vboxmanage modifyvm &lt;vm-name&gt; --nested-hw-virt on<\/code><\/pre>\n\n\n\n<p>Or;<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"910\" height=\"399\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/enable-nested-virtualization.png\" alt=\"Docker Desktop stopped... enable nested virtualization\" class=\"wp-image-15262\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/enable-nested-virtualization.png?v=1674155333 910w, https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/enable-nested-virtualization-768x337.png?v=1674155333 768w\" sizes=\"(max-width: 910px) 100vw, 910px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>After starting the tutorial page will pop up.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1281\" height=\"743\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/docker-desktop-tutorial.png\" alt=\"how to Install Docker Desktop on Ubuntu\" class=\"wp-image-15263\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/docker-desktop-tutorial.png?v=1674155591 1281w, https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/docker-desktop-tutorial-768x445.png?v=1674155591 768w\" sizes=\"(max-width: 1281px) 100vw, 1281px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You can either choose to go through the tutorial or skip.<\/li>\n\n\n\n<li>Then you will be redirected to the Containers page after skipping or going through the tutorial.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1287\" height=\"740\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/docker-desktop-containers.png\" alt=\"how to Install Docker Desktop on Ubuntu\" class=\"wp-image-15264\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/docker-desktop-containers.png?v=1674155862 1287w, https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/docker-desktop-containers-768x442.png?v=1674155862 768w\" sizes=\"(max-width: 1287px) 100vw, 1287px\" \/><figcaption class=\"wp-element-caption\">Install and Configure Docker Desktop on Kali Linux<\/figcaption><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"running-containers\">Running containers<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>On the home page, we will run the Redis container as an example. You can as well copy the example <strong><code>docker run<\/code><\/strong> command and execute it on the terminal.<\/li>\n\n\n\n<li>To run Redis container under guides, click on <strong>Run<\/strong> option and then select the directory where Docker will store static content.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1270\" height=\"720\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/run-sample-docker-container.png\" alt=\"how to Install Docker Desktop on Ubuntu\" class=\"wp-image-15265\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/run-sample-docker-container.png?v=1674156995 1270w, https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/run-sample-docker-container-768x435.png?v=1674156995 768w\" sizes=\"(max-width: 1270px) 100vw, 1270px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>When you click Run, the container images will be pulled and Docker container created over it.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1271\" height=\"723\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/sample-redis-docker-container.png\" alt=\"\" class=\"wp-image-15266\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/sample-redis-docker-container.png?v=1674157013 1271w, https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/sample-redis-docker-container-768x437.png?v=1674157013 768w\" sizes=\"(max-width: 1271px) 100vw, 1271px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You can view container logs, inspect it, open the terminal for the container, check metrics e.t.c<\/li>\n\n\n\n<li>You can search the images from Docker hub and run containers using them;<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1276\" height=\"729\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/search-docker-images.png\" alt=\"\" class=\"wp-image-15267\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/search-docker-images.png?v=1674157604 1276w, https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/search-docker-images-768x439.png?v=1674157604 768w\" sizes=\"(max-width: 1276px) 100vw, 1276px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Containers can be managed from the containers tab.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1270\" height=\"721\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/all-containers.png\" alt=\"\" class=\"wp-image-15268\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/all-containers.png?v=1674157770 1270w, https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/all-containers-768x436.png?v=1674157770 768w\" sizes=\"(max-width: 1270px) 100vw, 1270px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The images can be managed from the image tab.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1270\" height=\"720\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/docker-desktop-images.png\" alt=\"\" class=\"wp-image-15269\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/docker-desktop-images.png?v=1674157883 1270w, https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/docker-desktop-images-768x435.png?v=1674157883 768w\" sizes=\"(max-width: 1270px) 100vw, 1270px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"configure-docker-desktop-on-kali-linux\">Configure Docker Desktop on Kali Linux<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Click on the setting icon as shown below.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"general-tab\">General tab<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You can configure Docker Desktop to start when you log in from the settings menu.<\/li>\n\n\n\n<li>Alternatively, you can use the command<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>systemctl --user enable docker-desktop <\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Choose a theme for Docker Desktop.<\/li>\n\n\n\n<li>Show weekly tips which are simply recommendations.<\/li>\n\n\n\n<li>Open Docker Dashboard at startup<\/li>\n\n\n\n<li>Enable Docker Compose V1\/V2 compatibility mode which allows you to switch between V1 or V2.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1270\" height=\"721\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/docker-desktop-general-settings.png\" alt=\"\" class=\"wp-image-15270\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/docker-desktop-general-settings.png?v=1674158046 1270w, https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/docker-desktop-general-settings-768x436.png?v=1674158046 768w\" sizes=\"(max-width: 1270px) 100vw, 1270px\" \/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"resources-tab\">Resources tab<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>On the resource tab, you can limit resources according to your preference, configure file sharing, and configure proxies and networks.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Other configurations are available on the settings option such as Docker Engine, Kubernetes, Software updates, Extensions, etc.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1271\" height=\"720\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/docker-desktop-resource-settings.png\" alt=\"\" class=\"wp-image-15271\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/docker-desktop-resource-settings.png?v=1674158155 1271w, https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/docker-desktop-resource-settings-768x435.png?v=1674158155 768w\" sizes=\"(max-width: 1271px) 100vw, 1271px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"uninstalling-docker-desktop-on-kali-linux\">Uninstalling Docker Desktop on Kali Linux<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>To remove Docker Desktop from Kali Linux run the command below.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt remove --purge --auto-remove docker-desktop<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Delete Docker Desktop files.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>rm -r $HOME\/.docker\/desktop<\/code><\/pre>\n\n\n\n<p>That concludes our article on installing Docker Desktop on Kali Linux.<\/p>\n\n\n\n<p>Read more on <a href=\"https:\/\/docs.docker.com\/desktop\/\" target=\"_blank\" rel=\"noreferrer noopener\">Docker Desktop Documentation<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"other-tutorials\">Other Tutorials<\/h2>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/how-to-install-docker-desktop-on-ubuntu\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to Install Docker Desktop on Ubuntu 22.04\/Ubuntu 20.04<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/how-to-install-docker-resource-usage-extension\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to Install Docker Resource Usage Extension<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/kifarunix.com\/how-to-monitor-docker-containers-using-nagios\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to Monitor Docker Containers using Nagios<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>How can you install Docker desktop on Linux? In this tutorial, you will learn how to install Docker desktop on Kali Linux. Docker Desktop is<\/p>\n","protected":false},"author":10,"featured_media":15548,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"rank_math_lock_modified_date":false,"footnotes":""},"categories":[121,1076,1077],"tags":[6383,6382,6384],"class_list":["post-15543","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-howtos","category-containers","category-docker","tag-docker-desktop-kali-linux","tag-install-docker-desktop-on-kali-linux","tag-kali-linux-docker","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-50","resize-featured-image"],"_links":{"self":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/15543"}],"collection":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/comments?post=15543"}],"version-history":[{"count":7,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/15543\/revisions"}],"predecessor-version":[{"id":20694,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/15543\/revisions\/20694"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/media\/15548"}],"wp:attachment":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/media?parent=15543"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/categories?post=15543"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/tags?post=15543"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}