<?xml version='1.0' encoding='UTF-8'?>
<?xml-stylesheet href="/rss/stylesheet/" type="text/xsl"?>
<rss xmlns:content='http://purl.org/rss/1.0/modules/content/' xmlns:taxo='http://purl.org/rss/1.0/modules/taxonomy/' xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:itunes='http://www.itunes.com/dtds/podcast-1.0.dtd' xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0" xmlns:dc='http://purl.org/dc/elements/1.1/' xmlns:atom='http://www.w3.org/2005/Atom' xmlns:podbridge='http://www.podbridge.com/podbridge-ad.dtd' version='2.0'>
<channel>
  <title>NOBODY</title>
  <language>en-us</language>
  <generator>microfeed.org</generator>
  <itunes:type>episodic</itunes:type>
  <itunes:explicit>false</itunes:explicit>
  <atom:link rel="self" href="https://microfeed-duizhang-fun.pages.dev/rss/" type="application/rss+xml"/>
  <link>https://duizhang.fun</link>
  <itunes:author>duizhang</itunes:author>
  <itunes:image href="https://media-cdn.duizhang.fun/microfeed-duizhang-fun/production/images/channel-3c1360303d5cbae39b48cc2146aa8d0c.jpg"/>
  <image>
    <title>NOBODY</title>
    <url>https://media-cdn.duizhang.fun/microfeed-duizhang-fun/production/images/channel-3c1360303d5cbae39b48cc2146aa8d0c.jpg</url>
    <link>https://duizhang.fun</link>
  </image>
  <copyright>©2024</copyright>
  <itunes:owner>
    <itunes:email>xxynly@gmail.com</itunes:email>
    <itunes:name>duizhang</itunes:name>
  </itunes:owner>
  <item>
    <title>Install Docker Engine on Ubuntu</title>
    <guid>EgRoNGvlDYr</guid>
    <pubDate>Wed, 07 Aug 2024 12:30:45 GMT</pubDate>
    <itunes:explicit>false</itunes:explicit>
    <description>
      <![CDATA[<h1>Remove Docker PackagesRemove Docker Packages</h1><pre class="ql-syntax" spellcheck="false">for pkg in docker.io docker-doc docker-compose docker-compose-v2 podman-docker containerd runc; do sudo apt-get remove $pkg; done
</pre><p>This code will remove the following Docker-related packages using the APT package manager:</p><ul><li>docker.io</li><li>docker-doc</li><li>docker-compose</li><li>docker-compose-v2</li><li>podman-docker</li><li>containerd</li><li>runc</li></ul><p>Note that this will remove the Docker runtime and related tools from your system. If you need to reinstall Docker, you will need to follow the appropriate installation instructions for your operating system.</p><h1>Install Docker on UbuntuInstall Docker on Ubuntu</h1><h2>Add Docker's official GPG key</h2><pre class="ql-syntax" spellcheck="false">sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc
  
</pre><h2>Add the repository to Apt sources</h2><pre class="ql-syntax" spellcheck="false">echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
  $(. /etc/os-release &amp;&amp; echo "$VERSION_CODENAME") stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list &gt; /dev/null
sudo apt-get update
  
</pre><h2>Install Docker</h2><pre class="ql-syntax" spellcheck="false">sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
  
</pre><h2>Verify Docker installation</h2><pre class="ql-syntax" spellcheck="false">docker version
  
</pre>]]>
    </description>
    <link>https://duizhang.fun/i/EgRoNGvlDYr/</link>
    <itunes:episodeType>full</itunes:episodeType>
  </item>
</channel>
</rss>