{"id":1768,"date":"2023-03-15T12:30:00","date_gmt":"2023-03-15T17:30:00","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=1768"},"modified":"2023-03-06T05:58:30","modified_gmt":"2023-03-06T11:58:30","slug":"how-to-install-docker-ce-on-almalinux","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-ce-on-almalinux\/","title":{"rendered":"How to Install Docker CE on AlmaLinux"},"content":{"rendered":"\n<div id=\"linux-1633685363\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>Docker Community Edition (CE) is a free, open-source, and community-supported version of the Docker platform. Docker CE provides all the essential features to build, ship, and run container applications. It is designed for developers who are just starting out with containerization, as well as for small-scale development and testing environments.<\/p>\n\n\n\n<p>Docker CE includes the Docker Engine, a lightweight runtime and packaging tool, and Docker CLI, a command-line interface for interacting with the Docker Engine. With Docker CE, developers can quickly build, package, and deploy their applications as containers, making it easier to run the same application across multiple environments, such as development, testing, and production.<\/p>\n\n\n\n<p>In the following tutorial, we will show you how to install Docker CE on <a href=\"https:\/\/www.rosehosting.com\/almalinux-hosting\/\" title=\"\">AlmaLinux server<\/a>.<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Log in to the Server &amp; Update the Server OS Packages<\/h2>\n\n\n\n<p>First, log in to your AlmaLinux&nbsp; server via SSH as the root user:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># ssh root@IP_Address -p Port_number<\/pre>\n\n\n\n<p>You will need to replace \u2018IP_Address\u2018 and \u2018Port_number\u2018 with your server\u2019s respective IP address and SSH port number. Additionally, replace \u2018root\u2019 with the admin account username if necessary.<\/p>\n\n\n\n<p>Before starting, you have to make sure that all AlmaLinux packages installed on the server are up to date. You can do this by running the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># dnf update<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2. Install Docker CE and Docker Compose<\/h2>\n\n\n\n<p>By default, the latest Docker CE package is unavailable in the AlmaLinux default repository, so you must add the Docker CE official repository to your server.<\/p>\n\n\n\n<p>To add a Docker CE repository to your AlmaLinux system, run the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># dnf config-manager --add-repo=https:\/\/download.docker.com\/linux\/centos\/docker-ce.repo\n<\/pre>\n\n\n\n<p>Update the package index by running the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># dnf update<\/pre>\n\n\n\n<p>You can check the added repo, including others of your system, using the command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># dnf repolist -v<\/pre>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2023\/02\/docker_ce_stable_repo.jpg\" alt=\"\" class=\"wp-image-44933\"\/><\/figure>\n<\/div>\n\n\n<p>Now that the Docker repository has been added to your system, you can continue to install Docker CE:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># dnf install docker-ce docker-ce-cli containerd.io<\/pre>\n\n\n\n<p>Once Docker is installed, verify the installed version with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># docker --version<\/pre>\n\n\n\n<p>You should get the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Docker version 23.0.1, build a5ee5b1<\/pre>\n\n\n\n<p>Start the Docker CE service by running the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># systemctl start docker<\/pre>\n\n\n\n<p>Enable the Docker service to start automatically at boot time by running the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># systemctl enable docker<\/pre>\n\n\n\n<p>Verify the service is up and running with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># systemctl status docker<\/pre>\n\n\n\n<p>You should see a similar output with information about Docker being active:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\u25cf docker.service - Docker Application Container Engine\n     Loaded: loaded (\/usr\/lib\/systemd\/system\/docker.service; disabled; vendor preset: disabled)\n     Active: active (running) since Fri 2023-02-17 15:36:29 CET; 1min 9s ago\nTriggeredBy: \u25cf docker.socket\n       Docs: https:\/\/docs.docker.com\n   Main PID: 49178 (dockerd)\n      Tasks: 7\n     Memory: 30.6M\n        CPU: 160ms\n     CGroup: \/system.slice\/docker.service\n             \u2514\u250049178 \/usr\/bin\/dockerd -H fd:\/\/ --containerd=\/run\/containerd\/containerd.sock<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3. Run Docker without root<\/h2>\n\n\n\n<p>This step is optional, but if you prefer the ability to run Docker as your current user, add your account to the docker group with this command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># usermod -aG docker $USER\n<\/pre>\n\n\n\n<p>You need to reboot your system for those changes to take effect.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># reboot<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4. Running Docker Containers<\/h2>\n\n\n\n<p>Now that you have installed Docker CE on AlmaLinux and set up your user account to run Docker commands, you can run Docker containers.<\/p>\n\n\n\n<p>To run a Docker container, you need to have a Docker image. A Docker image is a pre-built environment for running an application.<\/p>\n\n\n\n<p>Run the following command to pull a Docker image from the Docker Hub repository:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># docker pull hello-world<\/pre>\n\n\n\n<p><strong>Note:<\/strong> Replace &#8220;hello-world&#8221; with the name of the Docker image you want to pull.<\/p>\n\n\n\n<p>Run the following command to start a Docker container:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># docker run -it hello-world<\/pre>\n\n\n\n<p>The output should be similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Hello from Docker!\nThis message shows that your installation appears to be working correctly.\n\nTo generate this message, Docker took the following steps:\n 1. The Docker client contacted the Docker daemon.\n 2. The Docker daemon pulled the \"hello-world\" image from the Docker Hub.\n    (amd64)\n 3. The Docker daemon created a new container from that image which runs the\n    executable that produces the output you are currently reading.\n 4. The Docker daemon streamed that output to the Docker client, which sent it\n    to your terminal.\n\nTo try something more ambitious, you can run an Ubuntu container with:\n $ docker run -it ubuntu bash\n\nShare images, automate workflows, and more with a free Docker ID:\n https:\/\/hub.docker.com\/\n\nFor more examples and ideas, visit:\n https:\/\/docs.docker.com\/get-started\/\n<\/pre>\n\n\n\n<p>You can see your locally available images by using the <code>docker images<\/code> command.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># docker images<\/pre>\n\n\n\n<p>If you want to see the container information, you can use the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># docker ps -a<\/pre>\n\n\n\n<p>The output should be similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES\n519a0de94621 hello-world \"\/hello\" 7 minutes ago Exited (0) 7 minutes ago gracious_hamilton<\/pre>\n\n\n\n<p>In this tutorial, we learned how to install Docker CE on your AlmaLinux server and the basics of using it.<\/p>\n\n\n\n<p>Of course, you don\u2019t have to spend your time and follow this article to install Docker CE on AlmaLinux if you have an active <a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/\">AlmaLinux VPS Hosting<\/a> service with us, in which case you can ask our expert Linux admins to install Docker CE for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n\n\n\n<p><strong>PS.<\/strong> If you liked this post about installing Docker CE on AlmaLinux, please share it with your friends on social networks or leave a reply below.<\/p><div id=\"linux-112403129\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Docker Community Edition (CE) is a free, open-source, and community-supported version of the Docker platform. Docker CE provides all the essential features to build, ship, and run container applications. It is designed for developers who are just starting out with containerization, as well as for small-scale development and testing environments. Docker CE includes the Docker [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1770,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5,228,2],"tags":[220,240],"class_list":["post-1768","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-guides","category-linux","category-tutorials","tag-almalinux","tag-docker-ce"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Docker CE on AlmaLinux | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Check out our latest tutorial and learn how to install Docker CE on AlmaLinux. Let&#039;s dive right in and learn more about this topic!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-ce-on-almalinux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Docker CE on AlmaLinux | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Check out our latest tutorial and learn how to install Docker CE on AlmaLinux. Let&#039;s dive right in and learn more about this topic!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-ce-on-almalinux\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-15T17:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/03\/install-docker-ce-on-almalinux.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-docker-ce-on-almalinux\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-docker-ce-on-almalinux\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install Docker CE on AlmaLinux\",\"datePublished\":\"2023-03-15T17:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-docker-ce-on-almalinux\\\/\"},\"wordCount\":642,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-docker-ce-on-almalinux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/install-docker-ce-on-almalinux.webp\",\"keywords\":[\"almalinux\",\"docker ce\"],\"articleSection\":[\"Guides\",\"Linux\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-docker-ce-on-almalinux\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-docker-ce-on-almalinux\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-docker-ce-on-almalinux\\\/\",\"name\":\"How to Install Docker CE on AlmaLinux | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-docker-ce-on-almalinux\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-docker-ce-on-almalinux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/install-docker-ce-on-almalinux.webp\",\"datePublished\":\"2023-03-15T17:30:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Check out our latest tutorial and learn how to install Docker CE on AlmaLinux. Let's dive right in and learn more about this topic!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-docker-ce-on-almalinux\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-docker-ce-on-almalinux\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-docker-ce-on-almalinux\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/install-docker-ce-on-almalinux.webp\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/install-docker-ce-on-almalinux.webp\",\"width\":742,\"height\":372,\"caption\":\"install docker ce on almalinux\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-docker-ce-on-almalinux\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Docker CE on AlmaLinux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Docker CE on AlmaLinux | LinuxHostSupport","description":"Check out our latest tutorial and learn how to install Docker CE on AlmaLinux. Let's dive right in and learn more about this topic!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-ce-on-almalinux\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Docker CE on AlmaLinux | LinuxHostSupport","og_description":"Check out our latest tutorial and learn how to install Docker CE on AlmaLinux. Let's dive right in and learn more about this topic!","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-ce-on-almalinux\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2023-03-15T17:30:00+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/03\/install-docker-ce-on-almalinux.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-ce-on-almalinux\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-ce-on-almalinux\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install Docker CE on AlmaLinux","datePublished":"2023-03-15T17:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-ce-on-almalinux\/"},"wordCount":642,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-ce-on-almalinux\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/03\/install-docker-ce-on-almalinux.webp","keywords":["almalinux","docker ce"],"articleSection":["Guides","Linux","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-ce-on-almalinux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-ce-on-almalinux\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-ce-on-almalinux\/","name":"How to Install Docker CE on AlmaLinux | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-ce-on-almalinux\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-ce-on-almalinux\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/03\/install-docker-ce-on-almalinux.webp","datePublished":"2023-03-15T17:30:00+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Check out our latest tutorial and learn how to install Docker CE on AlmaLinux. Let's dive right in and learn more about this topic!","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-ce-on-almalinux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-ce-on-almalinux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-ce-on-almalinux\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/03\/install-docker-ce-on-almalinux.webp","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2023\/03\/install-docker-ce-on-almalinux.webp","width":742,"height":372,"caption":"install docker ce on almalinux"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-ce-on-almalinux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Docker CE on AlmaLinux"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1768","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=1768"}],"version-history":[{"count":1,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1768\/revisions"}],"predecessor-version":[{"id":1769,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1768\/revisions\/1769"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/1770"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=1768"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=1768"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=1768"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}