<rss
      xmlns:atom="http://www.w3.org/2005/Atom"
      xmlns:media="http://search.yahoo.com/mrss/"
      xmlns:content="http://purl.org/rss/1.0/modules/content/"
      xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
      xmlns:dc="http://purl.org/dc/elements/1.1/"
      version="2.0"
    >
      <channel>
        <title><![CDATA[♔ 𝕾𝖊𝖙𝖙𝖊 𝕭𝖊𝖑𝖑𝖔 ♔ 🇨🇦]]></title>
        <description><![CDATA[Unusquisque vult mundum regere]]></description>
        <link>https://settebello.npub.pro/tag/docker/</link>
        <atom:link href="https://settebello.npub.pro/tag/docker/rss/" rel="self" type="application/rss+xml"/>
        <itunes:new-feed-url>https://settebello.npub.pro/tag/docker/rss/</itunes:new-feed-url>
        <itunes:author><![CDATA[♔ 𝕾𝖊𝖙𝖙𝖊 𝕭𝖊𝖑𝖑𝖔 ♔ 🇨🇦]]></itunes:author>
        <itunes:subtitle><![CDATA[Unusquisque vult mundum regere]]></itunes:subtitle>
        <itunes:type>episodic</itunes:type>
        <itunes:owner>
          <itunes:name><![CDATA[♔ 𝕾𝖊𝖙𝖙𝖊 𝕭𝖊𝖑𝖑𝖔 ♔ 🇨🇦]]></itunes:name>
          <itunes:email><![CDATA[♔ 𝕾𝖊𝖙𝖙𝖊 𝕭𝖊𝖑𝖑𝖔 ♔ 🇨🇦]]></itunes:email>
        </itunes:owner>
            
      <pubDate>Thu, 20 Mar 2025 10:04:20 GMT</pubDate>
      <lastBuildDate>Thu, 20 Mar 2025 10:04:20 GMT</lastBuildDate>
      
      <itunes:image href="https://image.nostr.build/33564f1fde7e552cae8b6e3a60250e0343992c1094322180b034cd689f7c66b1.jpg" />
      <image>
        <title><![CDATA[♔ 𝕾𝖊𝖙𝖙𝖊 𝕭𝖊𝖑𝖑𝖔 ♔ 🇨🇦]]></title>
        <link>https://settebello.npub.pro/tag/docker/</link>
        <url>https://image.nostr.build/33564f1fde7e552cae8b6e3a60250e0343992c1094322180b034cd689f7c66b1.jpg</url>
      </image>
      <item>
      <title><![CDATA[Self Hosting: Portainer Server Installation]]></title>
      <description><![CDATA[It is easy to become quickly overwhelmed as you start installing different application on your Home Lab. It is for this reason that I try to install as much Docker container as possible. Installation and updates are a lot easier to do.

This article summarize how to quickly install the software Portainer. This software is used to manage and create docker containers and docker compose as well.]]></description>
             <itunes:subtitle><![CDATA[It is easy to become quickly overwhelmed as you start installing different application on your Home Lab. It is for this reason that I try to install as much Docker container as possible. Installation and updates are a lot easier to do.

This article summarize how to quickly install the software Portainer. This software is used to manage and create docker containers and docker compose as well.]]></itunes:subtitle>
      <pubDate>Thu, 20 Mar 2025 10:04:20 GMT</pubDate>
      <link>https://settebello.npub.pro/post/1742463179756/</link>
      <comments>https://settebello.npub.pro/post/1742463179756/</comments>
      <guid isPermaLink="false">naddr1qqxnzde5xg6rvve3xuunwdfkqgszpcta6rkphvyry6ywwwdd39cf6praav37652xsgh0m5kj9tjsf4crqsqqqa28vhffdk</guid>
      <category>selfhosting</category>
      
        <media:content url="https://i.nostr.build/oMDMv.png" medium="image"/>
        <enclosure 
          url="https://i.nostr.build/oMDMv.png" length="0" 
          type="image/png" 
        />
      <noteId>naddr1qqxnzde5xg6rvve3xuunwdfkqgszpcta6rkphvyry6ywwwdd39cf6praav37652xsgh0m5kj9tjsf4crqsqqqa28vhffdk</noteId>
      <npub>npub1yrshm58vrwcgxf5guuu6mztsn5z8m6era4g5dq3wlhfdy2h9qntsp0ja94</npub>
      <dc:creator><![CDATA[♔ 𝕾𝖊𝖙𝖙𝖊 𝕭𝖊𝖑𝖑𝖔 ♔ 🇨🇦]]></dc:creator>
      <content:encoded><![CDATA[<h3>Prerequisite</h3>
<ol>
<li><a href="https://habla.news/u/0xjogir@nostrplebs.com/dAEcxFC4zBUN7ciTJLPZa">Installing Ubuntu Server</a></li>
<li><a href="https://habla.news/u/0xjogir@nostrplebs.com/917064">Installing Docker on Linux Server</a></li>
</ol>
<h3>Installation</h3>
<p>Open a Terminal session and write the following command to make sure that Docker is running:</p>
<pre><code class="language-ruby">sudo systemctl status docker
</code></pre>
<p>You should get a screen with the docker.service as "running". To get back to command line do CTRL+C</p>
<p>Then, create the volume that Portainer Server will use to store its database:</p>
<pre><code class="language-ruby">sudo docker volume create portainer_data
</code></pre>
<p>You are now ready for the on-liner installation:</p>
<pre><code class="language-ruby">sudo docker run -d -p 8000:8000 -p 9443:9443 --name portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce:latest
</code></pre>
<p>To validate the installer, prompt the following command:</p>
<pre><code class="language-ruby">sudo docker ps
</code></pre>
<p>You should see Portainer's container running.</p>
<p>To access Portainer Server, go to the following adress:<br><np-embed url="https://localhost:9443"><a href="https://localhost:9443">https://localhost:9443</a></np-embed></p>
<p>Et voila!</p>
]]></content:encoded>
      <itunes:author><![CDATA[♔ 𝕾𝖊𝖙𝖙𝖊 𝕭𝖊𝖑𝖑𝖔 ♔ 🇨🇦]]></itunes:author>
      <itunes:summary><![CDATA[<h3>Prerequisite</h3>
<ol>
<li><a href="https://habla.news/u/0xjogir@nostrplebs.com/dAEcxFC4zBUN7ciTJLPZa">Installing Ubuntu Server</a></li>
<li><a href="https://habla.news/u/0xjogir@nostrplebs.com/917064">Installing Docker on Linux Server</a></li>
</ol>
<h3>Installation</h3>
<p>Open a Terminal session and write the following command to make sure that Docker is running:</p>
<pre><code class="language-ruby">sudo systemctl status docker
</code></pre>
<p>You should get a screen with the docker.service as "running". To get back to command line do CTRL+C</p>
<p>Then, create the volume that Portainer Server will use to store its database:</p>
<pre><code class="language-ruby">sudo docker volume create portainer_data
</code></pre>
<p>You are now ready for the on-liner installation:</p>
<pre><code class="language-ruby">sudo docker run -d -p 8000:8000 -p 9443:9443 --name portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce:latest
</code></pre>
<p>To validate the installer, prompt the following command:</p>
<pre><code class="language-ruby">sudo docker ps
</code></pre>
<p>You should see Portainer's container running.</p>
<p>To access Portainer Server, go to the following adress:<br><np-embed url="https://localhost:9443"><a href="https://localhost:9443">https://localhost:9443</a></np-embed></p>
<p>Et voila!</p>
]]></itunes:summary>
      <itunes:image href="https://i.nostr.build/oMDMv.png"/>
      </item>
      
      <item>
      <title><![CDATA[Self Hosting : Installing Docker on Linux Server]]></title>
      <description><![CDATA[Installing Docker is monumental for your Home Lab. This quick article will give you all the steps required to do the installation and to test your installation as well.]]></description>
             <itunes:subtitle><![CDATA[Installing Docker is monumental for your Home Lab. This quick article will give you all the steps required to do the installation and to test your installation as well.]]></itunes:subtitle>
      <pubDate>Tue, 18 Mar 2025 19:46:48 GMT</pubDate>
      <link>https://settebello.npub.pro/post/917064/</link>
      <comments>https://settebello.npub.pro/post/917064/</comments>
      <guid isPermaLink="false">naddr1qqrrjvfhxqmrgq3qyrshm58vrwcgxf5guuu6mztsn5z8m6era4g5dq3wlhfdy2h9qntsxpqqqp65wcjgnhw</guid>
      <category>selfhosting</category>
      
        <media:content url="https://m.stacker.news/82818" medium="image"/>
        <enclosure 
          url="https://m.stacker.news/82818" length="0" 
          type="" 
        />
      <noteId>naddr1qqrrjvfhxqmrgq3qyrshm58vrwcgxf5guuu6mztsn5z8m6era4g5dq3wlhfdy2h9qntsxpqqqp65wcjgnhw</noteId>
      <npub>npub1yrshm58vrwcgxf5guuu6mztsn5z8m6era4g5dq3wlhfdy2h9qntsp0ja94</npub>
      <dc:creator><![CDATA[♔ 𝕾𝖊𝖙𝖙𝖊 𝕭𝖊𝖑𝖑𝖔 ♔ 🇨🇦]]></dc:creator>
      <content:encoded><![CDATA[<h3>Prerequisite</h3>
<ol>
<li><a href="https://habla.news/u/0xjogir@nostrplebs.com/dAEcxFC4zBUN7ciTJLPZa">Installing Ubuntu Server</a></li>
</ol>
<h3>Installation</h3>
<p>Open a Terminal session and write the following command:</p>
<pre><code class="language-ruby">sudo apt install docker.io
</code></pre>
<p>You will be ask permission to install and continue</p>
<pre><code class="language-ruby">y
</code></pre>
<h3>Validation of the installation</h3>
<p>To validate the installer, prompt the following command:</p>
<pre><code class="language-ruby">docker --version
</code></pre>
<p>You should get:</p>
<pre><code class="language-ruby">Docker version 26.1.3, build 26.1.3-0ubuntu1~24.04.1
</code></pre>
<p>To test if it is running, prompt the following command:</p>
<pre><code class="language-ruby">sudo systemctl status docker
</code></pre>
<p>You should get a screen with the docker.service as "running".<br>To get back to command line do CTRL+C</p>
<h3>Test Installation</h3>
<p>To make sure that everything runs smoothly, write the following command:</p>
<pre><code class="language-ruby">sudo docker run hello-world
</code></pre>
<p>You should get a Hello from Docker.</p>
<p>You are ready to enjoy pulling docker images!</p>
<p>originally posted at <np-embed url="https://stacker.news/items/917064"><a href="https://stacker.news/items/917064">https://stacker.news/items/917064</a></np-embed></p>
]]></content:encoded>
      <itunes:author><![CDATA[♔ 𝕾𝖊𝖙𝖙𝖊 𝕭𝖊𝖑𝖑𝖔 ♔ 🇨🇦]]></itunes:author>
      <itunes:summary><![CDATA[<h3>Prerequisite</h3>
<ol>
<li><a href="https://habla.news/u/0xjogir@nostrplebs.com/dAEcxFC4zBUN7ciTJLPZa">Installing Ubuntu Server</a></li>
</ol>
<h3>Installation</h3>
<p>Open a Terminal session and write the following command:</p>
<pre><code class="language-ruby">sudo apt install docker.io
</code></pre>
<p>You will be ask permission to install and continue</p>
<pre><code class="language-ruby">y
</code></pre>
<h3>Validation of the installation</h3>
<p>To validate the installer, prompt the following command:</p>
<pre><code class="language-ruby">docker --version
</code></pre>
<p>You should get:</p>
<pre><code class="language-ruby">Docker version 26.1.3, build 26.1.3-0ubuntu1~24.04.1
</code></pre>
<p>To test if it is running, prompt the following command:</p>
<pre><code class="language-ruby">sudo systemctl status docker
</code></pre>
<p>You should get a screen with the docker.service as "running".<br>To get back to command line do CTRL+C</p>
<h3>Test Installation</h3>
<p>To make sure that everything runs smoothly, write the following command:</p>
<pre><code class="language-ruby">sudo docker run hello-world
</code></pre>
<p>You should get a Hello from Docker.</p>
<p>You are ready to enjoy pulling docker images!</p>
<p>originally posted at <np-embed url="https://stacker.news/items/917064"><a href="https://stacker.news/items/917064">https://stacker.news/items/917064</a></np-embed></p>
]]></itunes:summary>
      <itunes:image href="https://m.stacker.news/82818"/>
      </item>
      
      </channel>
      </rss>
    