{"id":15250,"date":"2023-01-19T23:11:27","date_gmt":"2023-01-19T20:11:27","guid":{"rendered":"https:\/\/kifarunix.com\/?p=15250"},"modified":"2024-03-09T23:48:41","modified_gmt":"2024-03-09T20:48:41","slug":"how-to-install-docker-desktop-on-ubuntu","status":"publish","type":"post","link":"https:\/\/kifarunix.com\/how-to-install-docker-desktop-on-ubuntu\/","title":{"rendered":"How to Install Docker Desktop on Ubuntu 22.04\/Ubuntu 20.04"},"content":{"rendered":"\n<p>How can you install Docker desktop on Linux? In this tutorial, you will learn how to install Docker desktop on Ubuntu 22.04\/Ubuntu 20.04. Docker Desktop is an easy-to-install program for Mac, Linux, or Windows environments. You may create and distribute containerized applications and microservices using it. Without needing to utilize the CLI to carry out essential tasks, it offers a straightforward interface that lets you manage your containers, apps, and images from your machine.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Installing Docker Desktop on Ubuntu Linux<\/h2>\n\n\n\n<p>The steps below outline how to Docker Desktop on Linux, specifically Ubuntu 22.04\/Ubuntu 20.04.<\/p>\n\n\n\n<p>Begin by checking the <a href=\"https:\/\/docs.docker.com\/desktop\/install\/linux-install\/#system-requirements\" target=\"_blank\" rel=\"noreferrer noopener\">requirements<\/a> for installing Docker Desktop.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Install Docker on Linux (Ubuntu 22.04\/Ubuntu 20.04)<\/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 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\/ubuntu\/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 \"deb &#91;arch=amd64] https:\/\/download.docker.com\/linux\/ubuntu $(lsb_release -cs) 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<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\">Installing Docker Desktop on Ubuntu 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 Cloud integration: v1.0.29\n Version:           20.10.22\n API version:       1.41\n Go version:        go1.18.9\n Git commit:        3a2c30b\n Built:             Thu Dec 15 22:28:04 2022\n OS\/Arch:           linux\/amd64\n Context:           desktop-linux\n Experimental:      true\n\nServer: Docker Desktop 4.16.1 (95567)\n Engine:\n  Version:          20.10.22\n  API version:      1.41 (minimum version 1.12)\n  Go version:       go1.18.9\n  Git commit:       42c8b31\n  Built:            Thu Dec 15 22:26:14 2022\n  OS\/Arch:          linux\/amd64\n  Experimental:     false\n containerd:\n  Version:          1.6.14\n  GitCommit:        9ba4b250366a5ddde94bb7c9d1def331423aa323\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=\"1765\" height=\"580\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/docker-desktop.png\" alt=\"how to Install Docker Desktop on Ubuntu\" class=\"wp-image-15257\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/docker-desktop.png?v=1674148291 1765w, https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/docker-desktop-768x252.png?v=1674148291 768w, https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/docker-desktop-1536x505.png?v=1674148291 1536w\" sizes=\"(max-width: 1765px) 100vw, 1765px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>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\n<div><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/accept-docker-desktop-subscription-agreement.png\" class=\"td-modal-image\"><figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"921\" height=\"625\" src=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/accept-docker-desktop-subscription-agreement.png\" alt=\"how to Install Docker Desktop on Ubuntu\" class=\"wp-image-15260\" title=\"\" srcset=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/accept-docker-desktop-subscription-agreement.png?v=1674154815 921w, https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/accept-docker-desktop-subscription-agreement-768x521.png?v=1674154815 768w\" sizes=\"(max-width: 921px) 100vw, 921px\" \/><figcaption class=\"wp-element-caption\">Install and Configure Docker Desktop on Ubuntu<\/figcaption><\/figure><\/a><\/div>\n\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<div><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/docker-desktop-containers.png\" class=\"td-modal-image\"><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 Ubuntu<\/figcaption><\/figure><\/a><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Running containers<\/h4>\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<div><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/run-sample-docker-container.png\" class=\"td-modal-image\"><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\" \/><figcaption class=\"wp-element-caption\">Install and Configure Docker Desktop on Ubuntu<\/figcaption><\/figure><\/a><\/div>\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<div><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/search-docker-images.png\" class=\"td-modal-image\"><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><\/a><\/div>\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<div><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/all-containers.png\" class=\"td-modal-image\"><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\" \/><figcaption class=\"wp-element-caption\">Install and Configure Docker Desktop on Ubuntu<\/figcaption><\/figure><\/a><\/div>\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<div><a href=\"https:\/\/kifarunix.com\/wp-content\/uploads\/2023\/01\/docker-desktop-images.png\" class=\"td-modal-image\"><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\" \/><figcaption class=\"wp-element-caption\">Install and Configure Docker Desktop on Ubuntu<\/figcaption><\/figure><\/a><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Configure Docker Desktop on Ubuntu 22.04\/Ubuntu 20.04<\/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\">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\" \/><figcaption class=\"wp-element-caption\">Install and Configure Docker Desktop on Ubuntu<\/figcaption><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">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\" \/><figcaption class=\"wp-element-caption\">Install and Configure Docker Desktop on Ubuntu<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Uninstall Docker Desktop on Ubuntu<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>To remove Docker Desktop from Ubuntu 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<ul class=\"wp-block-list\">\n<li>That concludes our article on how to installing Docker Desktop on Ubuntu systems.<\/li>\n<\/ul>\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\">Other Tutorials<\/h2>\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\n\n\n<p><a href=\"https:\/\/kifarunix.com\/how-to-check-docker-container-ram-and-cpu-usage\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to Check Docker Container RAM and CPU Usage<\/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 Ubuntu 22.04\/Ubuntu 20.04. Docker Desktop<\/p>\n","protected":false},"author":10,"featured_media":15279,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"rank_math_lock_modified_date":false,"footnotes":""},"categories":[121,1076,1077,46,36],"tags":[6301,6299,6300,6297,6296,6298],"class_list":["post-15250","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-howtos","category-containers","category-docker","category-virtualbox","category-virtualization","tag-docker-desktop-install","tag-docker-stopped-virtualbox","tag-fix-docker-stopped-issues","tag-how-to-install-docker-desktop-on-linux","tag-how-to-install-docker-desktop-on-ubuntu","tag-linux-install-docker-desktop","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\/15250"}],"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=15250"}],"version-history":[{"count":14,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/15250\/revisions"}],"predecessor-version":[{"id":20679,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/posts\/15250\/revisions\/20679"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/media\/15279"}],"wp:attachment":[{"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/media?parent=15250"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/categories?post=15250"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kifarunix.com\/wp-json\/wp\/v2\/tags?post=15250"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}