{"id":1311,"date":"2020-12-18T05:28:27","date_gmt":"2020-12-18T11:28:27","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=1311"},"modified":"2020-12-18T05:28:27","modified_gmt":"2020-12-18T11:28:27","slug":"how-to-install-docker-compose-on-debian-9","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/","title":{"rendered":"How to Install Docker Compose on Debian 9"},"content":{"rendered":"<div id=\"linux-2586662215\" 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><img decoding=\"async\" class=\"size-full wp-image-1315 alignright\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/installing-docker-compose-on-debian-9.jpg\" alt=\"installing docker compose on debian 9 \" width=\"130\" height=\"111\" \/>Docker is an open-source application that provides lightweight operating-system-level virtualization through the use of containers. The key benefit of Docker is that it allows users to package an application with all of its dependencies into a standardized unit for software development.<\/p>\n<p>Docker Engine is available in <strong>Community Edition<\/strong> (CE) and <strong>Enterprise Edition<\/strong> (EE). In this guide, we will do the installation of Docker Community Edition on Debian 9.<\/p>\n<p><!--more--><\/p>\n<h2 id=\"requirements\"><span id=\"Requirements\" class=\"ez-toc-section\"><\/span>Requirements<\/h2>\n<ul>\n<li>For the purposes of this tutorial, we will be using a\u00a0Debian 9 Server.<\/li>\n<li>Full SSH root access or a user with sudo privileges is also required.<\/li>\n<\/ul>\n<h2><span id=\"Step-1-Connect-via-SSH\" class=\"ez-toc-section\"><\/span><span id=\"Step-1-Connect-via-SSH\" class=\"ez-toc-section\"><span id=\"1-Connect-via-SSH\" class=\"ez-toc-section\">Step 1: Connect via SSH<\/span><\/span><\/h2>\n<p>Connect to your server via SSH as the root user using the following command:<\/p>\n<pre>ssh root@IP_ADDRESS -p PORT_NUMBER<\/pre>\n<p>Remember to replace \u201cIP_ADDRESS\u201d and \u201cPORT_NUMBER\u201d with your actual server IP address and SSH port number. Replace \u201croot\u201d with your admin username if you\u2019re not planning on using the root account.<\/p>\n<p>Before starting with the installation, we need to update the OS packages to their latest versions.<\/p>\n<p>We can do this by running the following commands:<\/p>\n<pre>$ apt-get update \r\n$ apt-get upgrade<\/pre>\n<p>Once the upgrade is complete, we can move on to the next step.<\/p>\n<h2><span id=\"Step-2-Install-Dependency-packages\" class=\"ez-toc-section\"><\/span>Step 2: Install Dependency packages<\/h2>\n<p>Start the installation by ensuring that all the packages used by docker as dependencies are installed.<\/p>\n<pre>apt-get install -y apt-transport-https ca-certificates curl gnupg2 software-properties-common build-essential<\/pre>\n<h2><span id=\"Step-3-Setting-Up-Docker-Repository\" class=\"ez-toc-section\"><\/span><span id=\"Step-3-Setting-Up-Docker-Repository\" class=\"ez-toc-section\">Step 3: Setting Up Docker Repository<\/span><\/h2>\n<p>To add the Docker repository to our server, we need to add the GPG keys first with the following commands:<\/p>\n<pre>curl -fsSL https:\/\/download.docker.com\/linux\/debian\/gpg | sudo apt-key add -<\/pre>\n<p>Once added, add the repository pointing to \u2018stable\u2019 update channel.<\/p>\n<pre>add-apt-repository \"deb [arch=amd64] https:\/\/download.docker.com\/linux\/debian $(lsb_release -cs) stable\"<\/pre>\n<p>We can now update our packages, which should include the repository from Docker.<\/p>\n<pre>apt-get update<\/pre>\n<p>After applying the command, you should see the repository link added:<\/p>\n<pre>Get:5 https:\/\/download.docker.com\/linux\/debian stretch InRelease [44.8 kB]\r\nGet:7 https:\/\/download.docker.com\/linux\/debian stretch\/stable amd64 Packages [8,437 B]<\/pre>\n<h2><span id=\"Step-4-Installing-Docker-CE\" class=\"ez-toc-section\"><\/span><span id=\"Step-4-Installing-Docker-CE\" class=\"ez-toc-section\">Step 4: Installing Docker CE<\/span><\/h2>\n<p>After setting up the repository, we can now install the Docker CE, as well as the Docker CLI by running the following command:<\/p>\n<pre>apt-get install -y docker-ce docker-ce-cli<\/pre>\n<p>This might take some time as it will also install any additional libraries that it requires.<\/p>\n<p>Once the installation is done, verify that the docker service is running by typing:<\/p>\n<pre>systemctl status docker<\/pre>\n<p>Output:<\/p>\n<pre>docker.service - Docker Application Container Engine\r\n   Loaded: loaded (\/lib\/systemd\/system\/docker.service; enabled; vendor preset: enabled)\r\n   Active: active (running) since Sun 2019-07-14 03:40:16 EDT; 38s ago\r\n     Docs: https:\/\/docs.docker.com\r\n Main PID: 4434 (dockerd)\r\n   CGroup: \/system.slice\/docker.service\r\n           \u2514\u25004434 \/usr\/bin\/dockerd -H fd:\/\/ --containerd=\/run\/containerd\/containerd.sock<\/pre>\n<p>You can also check and verify the Docker version using:<\/p>\n<pre>docker -v<\/pre>\n<p>Output:<\/p>\n<pre>Docker version 18.09.7, build 2d0083d<\/pre>\n<p>Finally, make sure that the docker service will run at boot:<\/p>\n<pre>systemctl enable docker<\/pre>\n<p>The\u00a0<code>docker<\/code> the group is created but no users are added. Add normal user to the group to run docker commands as a non-privileged user.<\/p>\n<pre class=\"wp-block-preformatted\">sudo usermod -aG docker $USER<\/pre>\n<h2><span id=\"Step-5-Testing-Docker-CE\" class=\"ez-toc-section\"><\/span><span id=\"Step-6-Testing-Docker-CE\" class=\"ez-toc-section\">Step 5: Testing Docker CE<\/span><\/h2>\n<p>Let\u2019s now test if we can run Docker containers. You can test your Docker installation by running the classic \u201cHello World\u201d.<\/p>\n<pre>$ docker run hello-world\r\n\r\nHello from Docker.\r\nThis message shows that your installation appears to be working correctly.\r\n...<\/pre>\n<p>You can use the\u00a0<code>docker images<\/code> a command to see a list of all images on your system.<\/p>\n<pre>REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE\r\nhello-world         latest              fce289e99eb9        6 months ago        1.84kB<\/pre>\n<p>The\u00a0<code>docker ps<\/code>\u00a0command shows you all containers that are currently running.<\/p>\n<pre>CONTAINER ID        IMAGE               COMMAND             CREATED             STATUS              PORTS               NAMES<\/pre>\n<p>Since no containers are running, we see a blank line. Let\u2019s try a more useful variant:\u00a0<code>docker ps -a<\/code><\/p>\n<pre>CONTAINER ID        IMAGE               COMMAND             CREATED             STATUS                      PORTS               NAMES\r\n1a9048235446        hello-world         \"\/hello\"            24 minutes ago      Exited (0) 24 minutes ago                       amazing_bassi<\/pre>\n<p>Throughout this tutorial, you will run multiple times, and leaving stray containers will eat up disk space. Hence, as a rule of thumb, I clean up containers once I\u2019m done with them. To do that, you can run the <code>docker rm<\/code>\u00a0command. Just copy the container IDs from above and paste them alongside the command.<\/p>\n<pre>docker rm 1a9048235446\r\n1a9048235446<\/pre>\n<p>In later versions of Docker, the\u00a0<code>docker container prune<\/code>\u00a0command can be used to achieve the same effect.<\/p>\n<pre>$ docker container prune\r\nWARNING! This will remove all stopped containers.\r\nAre you sure you want to <span class=\"hljs-built_in\">continue<\/span>? [y\/N] y<\/pre>\n<p>If you want to see the options available to a specific command execute the following command:<\/p>\n<pre>docker --help<\/pre>\n<p>The output should be similar to this:<\/p>\n<p><img decoding=\"async\" class=\"size-full wp-image-1314 aligncenter\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/install-docker-compose-on-debian-9.png\" alt=\"install docker compose on debian 9\" width=\"793\" height=\"965\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/install-docker-compose-on-debian-9.png 793w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/install-docker-compose-on-debian-9-247x300.png 247w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/install-docker-compose-on-debian-9-768x935.png 768w\" sizes=\"(max-width: 793px) 100vw, 793px\" \/><\/p>\n<p>That\u2019s it! Docker CE has been successfully installed on your Debian 9 server.<\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"size-full wp-image-1316 alignright\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/docker-installation-on-debian-9.jpg\" alt=\"docker installation on debian 9\" width=\"130\" height=\"111\" \/>Of course, you don\u2019t need to do any of this if your server is covered by our <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\">Managed Linux Support<\/a> services in which case you can simply ask our expert Linux admins to install Docker CE onto your server for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p>PS.\u00a0If you liked this post, please share it with your friends on the social networks using the buttons below, or simply leave a comment in the comment section. Thanks.<\/p><div id=\"linux-3453346754\" 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 is an open-source application that provides lightweight operating-system-level virtualization through the use of containers. The key benefit of Docker is that it allows users to package an application with all of its dependencies into a standardized unit for software development. Docker Engine is available in Community Edition (CE) and Enterprise Edition (EE). In this [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1313,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[28,81,172],"class_list":["post-1311","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-debian","tag-debian-9","tag-docker-compose"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Docker Compose on Debian 9<\/title>\n<meta name=\"description\" content=\"In this guide, we will show you how to install Docker Community Edition on Debian 9.\" \/>\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-compose-on-debian-9\/\" \/>\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 Compose on Debian 9\" \/>\n<meta property=\"og:description\" content=\"In this guide, we will show you how to install Docker Community Edition on Debian 9.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/\" \/>\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=\"2020-12-18T11:28:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/how-to-install-docker-compose-on-debian-9.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\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=\"4 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-compose-on-debian-9\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install Docker Compose on Debian 9\",\"datePublished\":\"2020-12-18T11:28:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/\"},\"wordCount\":631,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/how-to-install-docker-compose-on-debian-9.jpg\",\"keywords\":[\"debian\",\"debian 9\",\"docker compose\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/\",\"name\":\"How to Install Docker Compose on Debian 9\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/how-to-install-docker-compose-on-debian-9.jpg\",\"datePublished\":\"2020-12-18T11:28:27+00:00\",\"author\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"In this guide, we will show you how to install Docker Community Edition on Debian 9.\",\"breadcrumb\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/#primaryimage\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/how-to-install-docker-compose-on-debian-9.jpg\",\"contentUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/how-to-install-docker-compose-on-debian-9.jpg\",\"width\":750,\"height\":410,\"caption\":\"How to Install Docker Compose on Debian 9\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/linuxhostsupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Docker Compose on Debian 9\"}]},{\"@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 Compose on Debian 9","description":"In this guide, we will show you how to install Docker Community Edition on Debian 9.","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-compose-on-debian-9\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Docker Compose on Debian 9","og_description":"In this guide, we will show you how to install Docker Community Edition on Debian 9.","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2020-12-18T11:28:27+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/how-to-install-docker-compose-on-debian-9.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install Docker Compose on Debian 9","datePublished":"2020-12-18T11:28:27+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/"},"wordCount":631,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/how-to-install-docker-compose-on-debian-9.jpg","keywords":["debian","debian 9","docker compose"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/","name":"How to Install Docker Compose on Debian 9","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/how-to-install-docker-compose-on-debian-9.jpg","datePublished":"2020-12-18T11:28:27+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"In this guide, we will show you how to install Docker Community Edition on Debian 9.","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/how-to-install-docker-compose-on-debian-9.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/how-to-install-docker-compose-on-debian-9.jpg","width":750,"height":410,"caption":"How to Install Docker Compose on Debian 9"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-docker-compose-on-debian-9\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Docker Compose on Debian 9"}]},{"@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\/1311","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=1311"}],"version-history":[{"count":5,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1311\/revisions"}],"predecessor-version":[{"id":1320,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1311\/revisions\/1320"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/1313"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=1311"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=1311"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=1311"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}