{"id":55897,"date":"2023-03-01T00:24:28","date_gmt":"2023-03-01T00:24:28","guid":{"rendered":"https:\/\/linuxiac.com\/?p=55897"},"modified":"2024-08-04T19:34:09","modified_gmt":"2024-08-04T19:34:09","slug":"how-to-install-docker-on-linux-mint-21","status":"publish","type":"post","link":"https:\/\/linuxiac.com\/how-to-install-docker-on-linux-mint-21\/","title":{"rendered":"How to Install Docker on Linux Mint 21: A Step-by-Step Guide"},"content":{"rendered":"\n<p><a href=\"https:\/\/linuxiac.com\/what-is-docker-container\/\">Docker<\/a> is a popular containerization platform that allows developers to create, deploy, and run applications in a portable and efficient manner. It simplifies the process of packaging applications and their dependencies into self-contained units called containers, which can run on any Linux-based operating system.<\/p>\n\n\n\n<p>In this article, we will explore how to install Docker on <a href=\"https:\/\/linuxiac.com\/linux-mint-21-vanessa-is-here\/\">Linux Mint 21<\/a>, step-by-step. Whether you are a developer, sysadmin, or just getting started with Docker, this guide will help you get up and running with Docker on your Linux Mint 21 system in no time.<\/p>\n\n\n\n<p>However, if you came across this guide looking for one for <strong>Linux Mint 22<\/strong>, you can <a href=\"https:\/\/linuxiac.com\/how-to-install-docker-on-linux-mint-22\/\"><strong>find it here<\/strong><\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-installing-docker-on-linux-mint-21\">Installing Docker on Linux Mint 21<\/h2>\n\n\n\n<p>You can install Docker on your Linux Mint 21 system in several ways. For example, it is available in the official Mint repositories, where users can easily install it with a single&nbsp;<a href=\"https:\/\/linuxiac.com\/apt-command-in-linux\/\" target=\"_blank\" rel=\"noreferrer noopener\">APT command<\/a>. However, one disadvantage to this approach is that the version available is not always the most recent.<\/p>\n\n\n\n<p>For this reason, this guide will show you how to install Docker on Linux Mint 21 from the official Docker repository so you always get the latest version, and it will automatically receive all future software updates as they become available. So, let&#8217;s get started.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-step-1-install-prerequisites\">Step 1: Install Prerequisites<\/h3>\n\n\n\n<p>First, run the two commands below to update the package index and install the prerequisite necessary to&nbsp;add and use a new HTTPS repository.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-1\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">sudo apt update\nsudo apt install apt-transport-https ca-certificates curl gnupg<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-1\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<p>Once operations are completed, you can move to the next section, where we&#8217;ll add the Docker&#8217;s repo GPG key and repo itself to our Linux Mint 21 system.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-step-2-add-docker-s-official-gpg-key\">Step 2: Add Docker\u2019s Official GPG Key<\/h3>\n\n\n\n<p>Next, import the Docker GPG repository key to your Mint system. This security feature ensures that the software you\u2019re installing is authentic.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-2\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">curl -fsSL https:\/\/download.docker.com\/linux\/ubuntu\/gpg | sudo gpg --dearmor -o \/usr\/share\/keyrings\/docker.gpg<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-2\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-gpg.png\"><img decoding=\"async\" width=\"917\" height=\"176\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-gpg.png\" alt=\"Add Docker\u2019s repo GPG key.\" class=\"wp-image-55918\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-gpg.png 917w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-gpg-380x73.png 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-gpg-768x147.png 768w\" sizes=\"(max-width: 917px) 100vw, 917px\" \/><\/a><figcaption class=\"wp-element-caption\">Add Docker\u2019s repo GPG key.<\/figcaption><\/figure>\n\n\n\n<p>Notice that the command produces no output.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"step-3-add-docker-repo-to-ubuntu-2204\">Step 3: Add Docker Repo to Linux Mint 21<\/h3>\n\n\n\n<p>After importing the GPG keys, we\u2019ll add the official Docker repository to our Linux Mint 21 system.&nbsp;This implies that the update package will be made available with the rest of your system\u2019s regular updates if a new version is released.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-3\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\"><span class=\"hljs-built_in\">echo<\/span> <span class=\"hljs-string\">\"deb &#91;arch=<span class=\"hljs-variable\">$(dpkg --print-architecture)<\/span> signed-by=\/usr\/share\/keyrings\/docker.gpg] https:\/\/download.docker.com\/linux\/ubuntu jammy stable\"<\/span> | sudo tee \/etc\/apt\/sources.list.d\/docker.list &gt; \/dev\/null<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-3\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-add-repo.png\"><img decoding=\"async\" width=\"921\" height=\"204\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-add-repo.png\" alt=\"Add the official Docker repository to Linux Mint 21.\" class=\"wp-image-55924\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-add-repo.png 921w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-add-repo-380x84.png 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-add-repo-768x170.png 768w\" sizes=\"(max-width: 921px) 100vw, 921px\" \/><\/a><figcaption class=\"wp-element-caption\">Add the official Docker repository to Linux Mint 21.<\/figcaption><\/figure>\n\n\n\n<p>As with the previous command, its execution produces no output.<\/p>\n\n\n\n<p>Next, refresh the package list.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-4\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">sudo apt update<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-4\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-add-repo2.png\"><img decoding=\"async\" width=\"979\" height=\"438\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-add-repo2.png\" alt=\"Update the package base.\" class=\"wp-image-55927\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-add-repo2.png 979w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-add-repo2-380x170.png 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-add-repo2-768x344.png 768w\" sizes=\"(max-width: 979px) 100vw, 979px\" \/><\/a><figcaption class=\"wp-element-caption\">Update the package base.<\/figcaption><\/figure>\n\n\n\n<p>This command updates the package index on our system. As you can see, the newly added Docker repository is now available and ready to be used.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Install Docker on Linux Mint 21<\/h3>\n\n\n\n<p>Finally, run the below command to install the latest up-to-date Docker release on Linux Mint.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-5\" data-shcb-language-name=\"CSS\" data-shcb-language-slug=\"css\"><span><code class=\"hljs language-css\"><span class=\"hljs-selector-tag\">sudo<\/span> <span class=\"hljs-selector-tag\">apt<\/span> <span class=\"hljs-selector-tag\">install<\/span> <span class=\"hljs-selector-tag\">docker-ce<\/span> <span class=\"hljs-selector-tag\">docker-ce-cli<\/span> <span class=\"hljs-selector-tag\">containerd<\/span><span class=\"hljs-selector-class\">.io<\/span> <span class=\"hljs-selector-tag\">docker-buildx-plugin<\/span> <span class=\"hljs-selector-tag\">docker-compose-plugin<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-5\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">CSS<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">css<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-install.png\"><img decoding=\"async\" width=\"901\" height=\"552\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-install.png\" alt=\"Install Docker on Linux Mint 21.\" class=\"wp-image-55933\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-install.png 901w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-install-380x233.png 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-install-768x471.png 768w\" sizes=\"(max-width: 901px) 100vw, 901px\" \/><\/a><figcaption class=\"wp-element-caption\">Install Docker on Linux Mint 21.<\/figcaption><\/figure>\n\n\n\n<p>This installs the following Docker components:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>docker-ce<\/strong>: The Docker engine itself.<\/li>\n\n\n\n<li><strong>docker-ce-cli<\/strong>: A command line tool that lets you talk to the Docker daemon.<\/li>\n\n\n\n<li><strong>containerd.io<\/strong>: A container runtime that manages the container\u2019s lifecycle.<\/li>\n\n\n\n<li><strong>docker-buildx-plugin<\/strong>: A CLI plugin that&nbsp;extends the Docker build with many new features.<\/li>\n\n\n\n<li><strong>docker-compose-plugin<\/strong>: A configuration management plugin to orchestrate creating and managing Docker containers through compose files.<\/li>\n<\/ul>\n\n\n\n<p>That\u2019s all! Docker should now be installed; the service started and enabled to start automatically on boot.<\/p>\n\n\n\n<p>In addition, you can check the Docker service status using the following:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-6\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">sudo systemctl is-active docker<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-6\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-check-service-status.png\"><img decoding=\"async\" width=\"895\" height=\"179\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-check-service-status.png\" alt=\"Check the status of the Docker service.\" class=\"wp-image-55936\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-check-service-status.png 895w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-check-service-status-380x76.png 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-check-service-status-768x154.png 768w\" sizes=\"(max-width: 895px) 100vw, 895px\" \/><\/a><figcaption class=\"wp-element-caption\">Check the status of the Docker service.<\/figcaption><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"step-5-verify-the-docker-installation\">Step 5: Verify the Docker Installation<\/h3>\n\n\n\n<p>Now let\u2019s check if everything with our new Docker installation works properly. For this purpose, we will run a simple application called &#8220;hello-world.&#8221;<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-7\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">sudo docker run hello-world<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-7\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-run-container.png\"><img decoding=\"async\" width=\"977\" height=\"756\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-run-container.png\" alt=\"Docker successfully installed, up &amp; running on Linux Mint 21.\" class=\"wp-image-55942\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-run-container.png 977w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-run-container-380x294.png 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-run-container-768x594.png 768w\" sizes=\"(max-width: 977px) 100vw, 977px\" \/><\/a><figcaption class=\"wp-element-caption\">Docker successfully installed, up &amp; running on Linux Mint 21.<\/figcaption><\/figure>\n\n\n\n<p>Congratulations! As we can see, everything works as expected!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Enabling Non-root Users to Run Docker Commands<\/h2>\n\n\n\n<p>So far, we have successfully installed Docker on your Linux Mint 21 system.<\/p>\n\n\n\n<p>However, only root and users with <a href=\"https:\/\/linuxiac.com\/make-sudo-remember-password-longer\/\">sudo privileges<\/a> can execute Docker commands by default, which can be a security concern. In other words, if you attempt to run the <code>docker<\/code> command as a regular user without prefixing it with <code>sudo<\/code>, you\u2019ll get an error message like this:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-permission-denied.png\"><img decoding=\"async\" width=\"932\" height=\"228\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-permission-denied.png\" alt=\"Docker permission denied.\" class=\"wp-image-55945\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-permission-denied.png 932w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-permission-denied-380x93.png 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-permission-denied-768x188.png 768w\" sizes=\"(max-width: 932px) 100vw, 932px\" \/><\/a><figcaption class=\"wp-element-caption\">Docker permission denied.<\/figcaption><\/figure>\n\n\n\n<p>So, to run Docker commands as a non-root user, you must add your user to the docker group. To do that, type in the following:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-8\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">sudo usermod -aG docker <span class=\"hljs-variable\">${USER}<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-8\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">Bash<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">bash<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>In the above command,&nbsp;<code>${USER}<\/code>&nbsp;is an&nbsp;environment variable&nbsp;that holds your username. To apply for the new group membership, reboot your Mint system. You can then execute <code>docker<\/code> commands without prefixing them with <code>sudo<\/code>.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/03\/mint-docker-run-as-regular-user.png\"><img decoding=\"async\" width=\"910\" height=\"182\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/03\/mint-docker-run-as-regular-user.png\" alt=\"Run the docker command as a regular user.\" class=\"wp-image-55951\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/03\/mint-docker-run-as-regular-user.png 910w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/03\/mint-docker-run-as-regular-user-380x76.png 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/03\/mint-docker-run-as-regular-user-768x154.png 768w\" sizes=\"(max-width: 910px) 100vw, 910px\" \/><\/a><figcaption class=\"wp-element-caption\">Run the docker command as a regular user.<\/figcaption><\/figure>\n\n\n\n<p>This approach can reduce the security risks associated with Docker while enabling non-root users to take advantage of its powerful capabilities.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Installing Docker on Linux Mint 21 can initially seem daunting, but with the step-by-step guide provided, it is a relatively straightforward process. Following the steps outlined in the guide, you can successfully install Docker on your Linux Mint 21 machine and start reaping the benefits of containerization.<\/p>\n\n\n\n<p>So, what are you waiting for? Start experimenting with Docker today and see how it can revolutionize how you build and deploy applications.<\/p>\n\n\n\n<p>Let me know if you have any questions or suggestions, and I\u2019ll be happy to follow up with you. Happy dockering!<\/p>\n\n\n\n<p>To learn more about Docker, check out the official&nbsp;<a href=\"https:\/\/docs.docker.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">Docker documentation<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Follow our step-by-step guide to easily install Docker on your Linux Mint 21 system and start containerizing your applications.<\/p>\n","protected":false},"author":10,"featured_media":55900,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9,4417],"tags":[1439,4359],"class_list":["post-55897","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","category-linux-knowledge","tag-docker","tag-linux-mint"],"blocksy_meta":{"has_hero_section":"default","hero_section":"type-2","pageTitleFont":{"family":"Default","variation":"Default","size":{"desktop":"2.8em","tablet":"2.8em","mobile":"2.8em","__changed":[]},"line-height":"CT_CSS_SKIP_RULE","letter-spacing":"CT_CSS_SKIP_RULE","text-transform":"CT_CSS_SKIP_RULE","text-decoration":"CT_CSS_SKIP_RULE"},"hero_elements":[{"id":"custom_title","enabled":true,"heading_tag":"h1","title":"Home","__id":"XKY1BMjmrX9XAT8P3N8n_"},{"id":"custom_description","enabled":false,"description_visibility":{"desktop":true,"tablet":true,"mobile":false},"__id":"nNJnnmBB9R0zxGEemQq7W"},{"id":"custom_meta","enabled":true,"meta_elements":[{"id":"author","enabled":true,"label":"By","has_author_avatar":"no","avatar_size":25,"__id":"CY73iMLNUUoSLyA7Qe1uP"},{"id":"post_date","enabled":true,"label":"On","date_format_source":"default","date_format":"M j, Y","__id":"tbeCaN-_FegC0J641QY83"},{"id":"updated_date","enabled":false,"label":"On","date_format_source":"default","date_format":"M j, Y","__id":"5aNWqNjovUram-dBHWQgG"},{"id":"categories","enabled":false,"label":"In","style":"simple","__id":"-fR-SBHICX163RCrrvM_F"},{"id":"comments","enabled":true,"__id":"m_Gcdmx_sKC4aSygM_aW6"}],"page_meta_elements":{"joined":true,"articles_count":true,"comments":true},"__id":"SzyZ01e85m75_Z40gxyiC","meta_type":"label"},{"id":"breadcrumbs","enabled":false,"__id":"0D7CHwK7suHrUyB50MWhx"}],"hero_structure":"normal","page_title_bg_type":"custom_image","custom_hero_background":{"attachment_id":55903,"url":"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/02\/mint-docker-header-1024x237.jpg"},"styles_descriptor":{"styles":{"desktop":"","tablet":"","mobile":""},"google_fonts":[],"version":6}},"_links":{"self":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/posts\/55897","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/comments?post=55897"}],"version-history":[{"count":0,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/posts\/55897\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/media\/55900"}],"wp:attachment":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/media?parent=55897"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/categories?post=55897"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/tags?post=55897"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}