<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>install dockers on linux Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/install-dockers-on-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Thu, 05 Dec 2019 20:24:12 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How To Install Docker on Ubuntu 16.04 18.04 / 19.04</title>
		<link>https://www.osradar.com/how-to-install-docker-on-ubuntu-16-04-18-04-19-04/</link>
					<comments>https://www.osradar.com/how-to-install-docker-on-ubuntu-16-04-18-04-19-04/#respond</comments>
		
		<dc:creator><![CDATA[sabi]]></dc:creator>
		<pubDate>Thu, 05 Dec 2019 20:24:11 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[dockers CE]]></category>
		<category><![CDATA[install dockers on linux]]></category>
		<category><![CDATA[install dockers on ubuntu]]></category>
		<category><![CDATA[ubuntu 19.04]]></category>
		<category><![CDATA[unix]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=16122</guid>

					<description><![CDATA[<p>Today we are going to learn you that how you can Install Docker engine on your Ubuntu system. Docker engine allows you to package your applications with all of its dependencies into a single standardized unit for software development &#38; distribution.It is an open source Linux Distribution which wrap up a piece of software in [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-docker-on-ubuntu-16-04-18-04-19-04/">How To Install Docker on Ubuntu 16.04 18.04 / 19.04</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Today we are going to learn you that how you can Install Docker engine on your Ubuntu system. Docker engine allows you to package your applications with all of its dependencies into a single standardized unit for software development &amp; distribution.<br>It is an open source Linux Distribution which wrap up a piece of software in complete file system that contain everything it needs to run like:</p>



<ul><li><strong>code</strong></li><li><strong>runtime</strong></li><li><strong>system tools</strong></li><li><strong>system libraries</strong></li></ul>



<p>And much more you can Install on a Linux server. The main specification of Docker is that it can work in any Environment.</p>



<p>Lets proceed with the Installation process.</p>



<h3><strong>Step 1: Update your System</strong></h3>



<p>Make sure that your system is up-to date.</p>



<pre class="wp-block-verse">sudo apt -y update</pre>



<h3><strong>Step 2: Install Basic Dependencies</strong></h3>



<p>We need few dependencies for our actual Installation of Docker, so we will configure these. Install them by running the given command in your Terminal.</p>



<pre class="wp-block-verse">sudo apt -y install apt-transport-https ca-certificates curl gnupg-agent software-properties-common</pre>



<h3><strong>Step 3: Installing Docker CE on Ubuntu 16.04 / 18.04 / 19.04</strong></h3>



<p>If you&#8217;re using any previous version of Docker remove them.</p>



<pre class="wp-block-verse">sudo apt remove docker docker-engine docker.io containerd runc</pre>



<p>Now, import GPG key.</p>



<pre class="wp-block-verse">curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -</pre>



<p>After it, add Docker CE repository to Ubuntu.</p>



<pre class="wp-block-verse">sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"</pre>



<p>Final step is to Install Docker CE on Ubuntu 16.04 / 18.04 /19.04</p>



<pre class="wp-block-verse">sudo apt update<br>sudo apt -y install docker-ce docker-ce-cli containerd.io</pre>



<p>Now, add your user account to docker group</p>



<pre class="wp-block-verse">sudo usermod -aG docker $user<br>newgrp docker</pre>



<p>Check Docker Version to Verify your Installation. </p>



<pre class="wp-block-verse">$ docker version<br> Client: Docker Engine - Community<br>  Version:           19.03.2<br>  API version:       1.40<br>  Go version:        go1.12.8<br>  Git commit:        6a30dfc<br>  Built:             Sun Nov 30 05:29:11 2019<br>  OS/Arch:           linux/amd64<br>  Experimental:      false<br><br>Server: Docker Engine - Community<br>  Engine:<br>   Version:          19.03.2<br>   API version:      1.40 (minimum version 1.12)<br>   Go version:       go1.12.8<br>   Git commit:       6a30dfc<br>   Built:            Sun Nov 30 05:27:45 2019<br>   OS/Arch:          linux/amd64<br>   Experimental:     false<br>  containerd:<br>   Version:          1.2.6<br>   GitCommit:        894b81a4b802e4eb2a91d1ce216b8817763c29fb<br>  runc:<br>   Version:          1.0.0-rc8<br>   GitCommit:        425e105d5a03fabd737a126ad93d62a9eeede87f<br>  docker-init:<br>   Version:          0.18.0<br>   GitCommit:        fec3683</pre>



<h3><strong>Step 4: Install Docker Compose on Ubuntu</strong></h3>



<p>Congratulations! You&#8217;re all done. </p>



<p>Follow the below link to read :</p>



<p><a href="https://www.osradar.com/?p=16124">How To Install Latest Docker Compose on Linux.</a></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-docker-on-ubuntu-16-04-18-04-19-04/">How To Install Docker on Ubuntu 16.04 18.04 / 19.04</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/how-to-install-docker-on-ubuntu-16-04-18-04-19-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
