{"id":63166,"date":"2023-05-03T19:39:23","date_gmt":"2023-05-03T19:39:23","guid":{"rendered":"https:\/\/linuxiac.com\/?p=63166"},"modified":"2024-12-18T20:31:11","modified_gmt":"2024-12-18T20:31:11","slug":"how-to-install-docker-on-fedora-linux","status":"publish","type":"post","link":"https:\/\/linuxiac.com\/how-to-install-docker-on-fedora-linux\/","title":{"rendered":"How to Install Docker on Fedora: A Step-by-Step Guide"},"content":{"rendered":"\n<p><a href=\"https:\/\/linuxiac.com\/what-is-docker-container\/\">Docker<\/a> is a popular platform for creating and running software applications in containers, making it easy to package and deploy applications across different environments.<\/p>\n\n\n\n<p>By default, Fedora comes with out-of-the-box support for Podman \u2013 a relatively new open-source tool and Docker alternative for developing, managing, and running containers, initially developed by Red Hat.<\/p>\n\n\n\n<p>However, many developers, system administrators, or Linux users interested in containerization prefer sticking to Docker.<\/p>\n\n\n\n<p>If you are one of them and looking for a comprehensive guide on installing Docker on Fedora, this article covers you. By the end of this guide, you\u2019ll be ready to start using Docker to create and deploy containerized applications on your Fedora system. So let\u2019s get started!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-step-1-update-your-fedora-system\">Step 1: Update Your Fedora System<\/h2>\n\n\n\n<p>Begin by updating the Fedora system OS packages to recent versions. This way, we ensure we have a wholly upgraded system. So, first, run the following command:<\/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 dnf update<\/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<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-update-packages.jpg\"><img decoding=\"async\" width=\"991\" height=\"261\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-update-packages.jpg\" alt=\"Update packages on Fedora.\" class=\"wp-image-63193\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-update-packages.jpg 991w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-update-packages-380x100.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-update-packages-768x202.jpg 768w\" sizes=\"(max-width: 991px) 100vw, 991px\" \/><\/a><figcaption class=\"wp-element-caption\">Update packages on Fedora.<\/figcaption><\/figure>\n\n\n\n<p>As you can see, no updated packages are available, but if you have any, apply them before proceeding.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-step-2-add-docker-repository\">Step 2: Add Docker Repository<\/h2>\n\n\n\n<p>An official Docker repository for RHEL-based Linux systems contains RPM packages for installation. So we must add it to our system before installing Docker on Fedora.<\/p>\n\n\n\n<p>First, install the &#8220;<em>dnf-plugins-core<\/em>&#8221; package (if not installed), which provides the commands to <a href=\"https:\/\/linuxiac.com\/dnf-command-linux\/\">manage your DNF repositories<\/a>.<\/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\">\u00a0sudo dnf install dnf-plugins-core<\/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<p>Then, add the official Docker repository to your Fedora 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\">sudo dnf-3 config-manager --add-repo https:\/\/download.docker.com\/linux\/fedora\/docker-ce.repo<\/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\/05\/fedora-docker-add-repo.jpg\"><img decoding=\"async\" width=\"990\" height=\"203\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-add-repo.jpg\" alt=\"Add the official Docker repository to Fedora.\" class=\"wp-image-63205\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-add-repo.jpg 990w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-add-repo-380x78.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-add-repo-768x157.jpg 768w\" sizes=\"(max-width: 990px) 100vw, 990px\" \/><\/a><figcaption class=\"wp-element-caption\">Add the official Docker repository to Fedora.<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-step-3-installing-docker-on-fedora\">Step 3: Installing Docker on Fedora<\/h2>\n\n\n\n<p>Now that we\u2019ve already had the Docker repository added to the system, we can install Docker, along with its command-line tool and containerd.io, to manage the container lifecycle of its host system more efficiently.<\/p>\n\n\n\n<p>The command below will install your Fedora system&#8217;s most up-to-date Docker version.<\/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 dnf install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin<\/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\/05\/fedora-docker-install2-1.jpg\"><img decoding=\"async\" width=\"1055\" height=\"744\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-install2-1.jpg\" alt=\"Installing Docker on Fedora.\" class=\"wp-image-121898\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-install2-1.jpg 1055w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-install2-1-380x268.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-install2-1-1024x722.jpg 1024w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-install2-1-768x542.jpg 768w\" sizes=\"(max-width: 1055px) 100vw, 1055px\" \/><\/a><figcaption class=\"wp-element-caption\">Installing Docker on Fedora.<\/figcaption><\/figure>\n\n\n\n<p>You\u2019ll be prompted to accept the GPG key during the installation, so type \u201c<em>Y<\/em>\u201d and hit \u201c<em>Enter<\/em>\u201d to proceed.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-install3.jpg\"><img decoding=\"async\" width=\"1055\" height=\"640\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-install3.jpg\" alt=\"Import the repo\u2019s GPG key.\" class=\"wp-image-121904\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-install3.jpg 1055w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-install3-380x231.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-install3-1024x621.jpg 1024w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-install3-768x466.jpg 768w\" sizes=\"(max-width: 1055px) 100vw, 1055px\" \/><\/a><figcaption class=\"wp-element-caption\">Import the repo\u2019s GPG key.<\/figcaption><\/figure>\n\n\n\n<p>Wait for the confirmation message for the successful completion of the Docker installation on your Fedora Linux system.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-step-4-enable-and-start-the-docker-service\">Step 4: Enable and Start the Docker Service<\/h2>\n\n\n\n<p>After the installation is complete, you can launch the Docker service and configure it to start automatically when the system boots:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-5\" data-shcb-language-name=\"Bash\" data-shcb-language-slug=\"bash\"><span><code class=\"hljs language-bash\">sudo systemctl start docker\nsudo systemctl <span class=\"hljs-built_in\">enable<\/span> docker<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-5\"><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\/05\/fedora-docker-enable-service.jpg\"><img decoding=\"async\" width=\"988\" height=\"228\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-enable-service.jpg\" alt=\"Start and enable autostart on service on boot.\" class=\"wp-image-63247\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-enable-service.jpg 988w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-enable-service-380x88.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-enable-service-768x177.jpg 768w\" sizes=\"(max-width: 988px) 100vw, 988px\" \/><\/a><figcaption class=\"wp-element-caption\">Start and enable autostart on service on boot.<\/figcaption><\/figure>\n\n\n\n<p>Finally, to confirm the running status of&nbsp;the Docker service, issue the following command:<\/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\/05\/fedora-docker-check-service-status.jpg\"><img decoding=\"async\" width=\"989\" height=\"169\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-check-service-status.jpg\" alt=\"Check service status.\" class=\"wp-image-63250\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-check-service-status.jpg 989w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-check-service-status-380x65.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-check-service-status-768x131.jpg 768w\" sizes=\"(max-width: 989px) 100vw, 989px\" \/><\/a><figcaption class=\"wp-element-caption\">Check service status.<\/figcaption><\/figure>\n\n\n\n<p>As you can see, Docker is up and running as expected.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-step-5-manage-docker-with-a-non-root-user\">Step 5: Manage Docker with a Non-Root User<\/h2>\n\n\n\n<p>So far, we have successfully installed Docker on our Fedora Linux system. However, only root and users with&nbsp;<a href=\"https:\/\/linuxiac.com\/make-sudo-remember-password-longer\/\">sudo privileges<\/a>&nbsp;can execute Docker commands by default.<\/p>\n\n\n\n<p>So, if you now attempt to run the&nbsp;<code>docker<\/code>&nbsp;command without prefixing it with&nbsp;<code>sudo<\/code>, you\u2019ll get an output like this:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-access-denied.jpg\"><img decoding=\"async\" width=\"989\" height=\"228\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-access-denied.jpg\" alt=\"Trying to run the docker command as a regular user.\" class=\"wp-image-63262\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-access-denied.jpg 989w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-access-denied-380x88.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-access-denied-768x177.jpg 768w\" sizes=\"(max-width: 989px) 100vw, 989px\" \/><\/a><figcaption class=\"wp-element-caption\">Trying to run the docker command as a regular user.<\/figcaption><\/figure>\n\n\n\n<p>But don\u2019t be concerned. There\u2019s a simple solution. To run Docker commands as a non-root user,&nbsp;<a href=\"https:\/\/linuxiac.com\/add-user-to-group-linux\/\" target=\"_blank\" rel=\"noreferrer noopener\">add your user to the \u201c<em>docker<\/em>\u201d group<\/a>. To do that, type in the following:<\/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 usermod -aG docker <span class=\"hljs-variable\">${USER}<\/span><\/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<p>In the above command, <code>${USER}<\/code> is an environment variable that holds your username. To apply for the new group membership, reboot your Fedora 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\/05\/fedora-docker-run-as-regular-user.jpg\"><img decoding=\"async\" width=\"976\" height=\"199\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-run-as-regular-user.jpg\" alt=\"Run the docker command as a regular user.\" class=\"wp-image-63265\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-run-as-regular-user.jpg 976w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-run-as-regular-user-380x77.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-run-as-regular-user-768x157.jpg 768w\" sizes=\"(max-width: 976px) 100vw, 976px\" \/><\/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\" id=\"h-step-6-test-the-docker-installation-on-fedora\">Step 6: Test the Docker Installation on Fedora<\/h2>\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 \u201chello-world.\u201d<\/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\">docker run hello-world<\/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<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-hello-world.jpg\"><img decoding=\"async\" width=\"1024\" height=\"908\" src=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-hello-world-1024x908.jpg\" alt=\"Docker successfully installed, up &amp; running on Fedora Linux.\" class=\"wp-image-63274\" srcset=\"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-hello-world-1024x908.jpg 1024w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-hello-world-380x337.jpg 380w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-hello-world-768x681.jpg 768w, https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-docker-hello-world.jpg 1098w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">Docker successfully installed, up &amp; running on Fedora Linux.<\/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\" id=\"h-conclusion\">Conclusion<\/h2>\n\n\n\n<p>Installing Docker on Fedora is a simple process that can be accomplished by following a few easy steps. Following the steps outlined in this guide, you can quickly set up Docker on your Fedora machine and begin deploying and managing containers.<\/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>. Additionally, I recommend you <a href=\"https:\/\/linuxiac.com\/how-to-install-and-use-docker-compose\/\">check out&nbsp;our detailed guide<\/a>&nbsp;to expand your skills with Docker and learn how to run and manage multi-container applications using Docker Compose.<\/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","protected":false},"excerpt":{"rendered":"<p>Are you looking to install Docker on Fedora? Our comprehensive guide provides clear and concise instructions to get you up and running.<\/p>\n","protected":false},"author":10,"featured_media":63169,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9,4417],"tags":[5233,1439,2040],"class_list":["post-63166","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","category-linux-knowledge","tag-containerization","tag-docker","tag-fedora"],"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":"ZvC8AILC5mlfNCwZ62q6O"},{"id":"custom_description","enabled":false,"description_visibility":{"desktop":true,"tablet":true,"mobile":false},"__id":"NzNGkY57bt4U0tpHuQKeS"},{"id":"custom_meta","enabled":true,"meta_elements":[{"id":"author","enabled":true,"label":"By","has_author_avatar":"no","avatar_size":25,"__id":"Mn4a8n7XBPEmj_d7TPln0"},{"id":"post_date","enabled":true,"label":"On","date_format_source":"default","date_format":"M j, Y","__id":"8UObiU20KN1cxUF0Khlmf"},{"id":"updated_date","enabled":false,"label":"On","date_format_source":"default","date_format":"M j, Y","__id":"-IPykBZma1NnOksMK9560"},{"id":"categories","enabled":false,"label":"In","style":"simple","__id":"znvhccvuO5-F6Ji68_8Q-"},{"id":"comments","enabled":true,"__id":"GEYyGiMxCRpTFnCjjdVRR"}],"page_meta_elements":{"joined":true,"articles_count":true,"comments":true},"__id":"0lm99CJIzzZmxrIJK0dR9","meta_type":"label"},{"id":"breadcrumbs","enabled":false,"__id":"Jr7K2RdbYR1nBQBTRGOcY"}],"hero_structure":"normal","page_title_bg_type":"custom_image","custom_hero_background":{"attachment_id":63172,"url":"https:\/\/linuxiac.com\/wp-content\/uploads\/2023\/05\/fedora-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\/63166","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=63166"}],"version-history":[{"count":0,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/posts\/63166\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/media\/63169"}],"wp:attachment":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/media?parent=63166"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/categories?post=63166"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/tags?post=63166"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}