<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Docker — LowEndSpirit</title>
        <link>https://staging.lowendspirit.com/index.php?p=/</link>
        <pubDate>Mon, 06 Apr 2026 11:38:12 +0000</pubDate>
        <language>en</language>
            <description>Docker — LowEndSpirit</description>
    <atom:link href="https://staging.lowendspirit.com/index.php?p=/discussions/tagged/docker/feed.rss" rel="self" type="application/rss+xml"/>
    <item>
        <title>Free Portainer Business License for the first five nodes</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/4644/free-portainer-business-license-for-the-first-five-nodes</link>
        <pubDate>Wed, 28 Sep 2022 04:22:16 +0000</pubDate>
        <category>General</category>
        <dc:creator>Fritz</dc:creator>
        <guid isPermaLink="false">4644@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Start using Portainer Business Edition, our fully featured commercial product, <strong>free for your first five nodes</strong>.</p>

<p>Business Edition includes all of the features of Community Edition, plus:</p>

<p>Role Based Access Controls (RBAC)<br />
Authentication and Activity Audit Logging<br />
Enhanced Support for OAuth<br />
Private Registry Management<br />
Advanced GitOps<br />
Resource Management Quotas<br />
Automatic Backups to S3</p>

<p>I registered mine under 5 minutes and the license is working for my nodes.</p>

<p>The first 5 nodes of Portainer business are provided free. They will send you a license key for an initial term of 3 years from your date of sign up. It will automatically and perpetually be renewed without cost for as long as we are using Portainer Business.</p>

<p>grab yours : <a href="https://www.portainer.io/pricing/take5" rel="nofollow">https://www.portainer.io/pricing/take5</a></p>
]]>
        </description>
    </item>
    <item>
        <title>Portainer – A Docker management tool</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/3919/portainer-a-docker-management-tool</link>
        <pubDate>Mon, 21 Mar 2022 19:47:34 +0000</pubDate>
        <category>LES Talk</category>
        <dc:creator>sahjanivishal</dc:creator>
        <guid isPermaLink="false">3919@/index.php?p=/discussions</guid>
        <description><![CDATA[<p><em>Written by <a href="https://staging.lowendspirit.com/index.php?p=/profile/sahjanivishal" rel="nofollow">@sahjanivishal</a>, 27 Apr 2021</em><br />
<small>Article was migrated from WordPress to Vanilla in March 2022</small></p>

<h3>What is Docker?</h3>

<p>If you're reading this, most probably you already know Docker or have at least heard about it a lot. But still, for the uninitiated, Docker is an open platform for developing, shipping, and running applications and it enables you to separate your applications from your infrastructure so you can deliver software quickly. Find Docker interesting and want to know more? Head over to their <a rel="nofollow" href="https://docs.docker.com/get-started/overview/">docs</a> and you can find all the information you need!</p>

<h3>What is Portainer?</h3>

<p>So, talking about the elephant in the room, <a rel="nofollow" href="https://www.portainer.io/">Portainer</a> is a fully-featured web based GUI management tool for Docker. It runs locally, giving developers a rich UI to build and publish container images, deploy and manage applications and leverage data persistence and horizontal scaling for their applications.<br />
Worried about the cost? Portainer Community Edition is open source, free forever and used by more than 500,000 developers worldwide.</p>

<h3>What can I use Portainer for?</h3>

<ol>
<li>Visualize your server's docker environment on your web browser. (<em>I know that you don't fear the terminal, but hey, a little help won't harm anybody!</em>)</li>
<li>Aggregate view of Docker Swarm clusters (<em>Yeah, it's that fancy!</em>)</li>
<li>Deploy containers with some pre-built templates, right from inside the Portainer.</li>
<li>Start, Stop, Kill, Restart, Pause, Resume and Remove the containers easily with the web-GUI.</li>
<li>Facing any issue while deploying containers? Don't worry, Portainer to rescue! You can inspect the logs for any containers directly from the GUI and see what is stopping you from conquering the world.</li>
</ol>

<h3>How do I install Portainer?</h3>

<p>So, you're happy to give Portainer a go and want to know how can you install it? I have got you covered:</p>

<ol>
<li>Make sure you have Docker Engine installed on your server. You can follow the install instructions given <a rel="nofollow" href="https://docs.docker.com/get-docker/">here.</a></li>
<li>Run the following command to create a docker volume which should give output as <code>portainer_data</code> indicating the command was successfully executed:</li>
</ol>

<p><code>sudo docker volume create portainer_data</code></p>

<ol start="3">
<li>Once the volume is created, run the following command to create and run the Portainer container:</li>
</ol>

<p><code>sudo docker run -d -p 8000:8000 -p 9000:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce</code></p>

<p>The above command should create and run the Portainer container on your server's port number 9000, which can be generally accessed in following ways:</p>

<p>a) By opening <code>http://your_server_ip:9000</code> in your favorite browser.<br />
b) If you have a domain name pointed towards your server's IP, by opening <code>yourdomain.com:9000</code> in your browser.</p>

<blockquote><div>
  <p>Note: If you want to access Portainer over a subdomain instead of every time typing <code>yourdomain.com:9000</code>, you can put it behind a reverse proxy with the help of any web server, like Caddy.</p>
</div></blockquote>

<p>4&#46; Alright, once the container is up and running, access it via any of the above methods and you will be greeted by the following initial setup screen of Portainer:</p>

<p><img src="https://talk.lowendspirit.com/uploads/editor/pa/33updf14w5mb.png" alt="" title="" /></p>

<blockquote><div>
  <p>Set the username and password for admin user here and click on <code>Create User</code>.</p>
</div></blockquote>

<p>5&#46; Next, select Docker as the container management environment you want Portainer to connect to (yes Portainer can connect to Kubernetes too, but that's a story for another day):</p>

<p><img src="https://talk.lowendspirit.com/uploads/editor/xp/jl35jgd665h1.png" alt="" title="" /></p>

<p>6&#46; Voila! now you have successfully connected your local Docker environment to Portainer and you should be able to see below screen:</p>

<p><img src="https://talk.lowendspirit.com/uploads/editor/90/43xcygcvlqnz.png" alt="" title="" /></p>

<p>7&#46; Click on the <code>local</code> endpoint to see all the containers, images, volumes, networks etc. in your Docker environment:</p>

<p><img src="https://talk.lowendspirit.com/uploads/editor/am/z4sbzvuao0qn.png" alt="" title="" /></p>

<p>8&#46; You can also deploy app templates containers right from inside the Portainer:</p>

<p><img src="https://talk.lowendspirit.com/uploads/editor/65/sakwc8mh0hvd.png" alt="" title="" /></p>

<blockquote><div>
  <p>This is it! Go on, play around a bit and I'm sure you'll love how easy Portainer makes it to manage Docker containers. Given how many of the self-hosted apps can be deployed using Docker containers, Portainer is a must-have tool in your arsenal.</p>
</div></blockquote>
]]>
        </description>
    </item>
    <item>
        <title>Matrix and Element Install Guide</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/2524/matrix-and-element-install-guide</link>
        <pubDate>Sun, 07 Feb 2021 22:28:31 +0000</pubDate>
        <category>General</category>
        <dc:creator>cyberhost</dc:creator>
        <guid isPermaLink="false">2524@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>I've seen Matrix and Element mentioned a few times around here.</p>

<p>So here is a docker setup guide for anyone wanting to quickly run their own federated messaging server <img src="https://staging.lowendspirit.com/plugins/emojiextender/emoji/twitter/smile.png" title=":)" alt=":)" height="18" /></p>

<p><a href="https://cyberhost.uk/element-matrix-setup" rel="nofollow">https://cyberhost.uk/element-matrix-setup</a></p>

<p>Best Wishes,<br />
CyberHost</p>
]]>
        </description>
    </item>
    <item>
        <title>Benchmark &amp; Docker</title>
        <link>https://staging.lowendspirit.com/index.php?p=/discussion/383/benchmark-docker</link>
        <pubDate>Sun, 22 Dec 2019 14:01:12 +0000</pubDate>
        <category>Technical</category>
        <dc:creator>Dream</dc:creator>
        <guid isPermaLink="false">383@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Hey Guys,</p>

<p>We all love to show our virtual Dick on bench marking the shit out of our servers. But i hate to always search for the URL's because I'm too lazy to save them down.</p>

<p>So i had the idea on creating a Docker image which contains the most of the Scripts. <br />
Now my questions,</p>

<ul>
<li>Is there any interest in something like that?</li>
<li>If yes, which scripts would you like to see?</li>
<li>What are the downsides in this approach?</li>
</ul>

<p>I would love to hear your opinions about this Topic.</p>
]]>
        </description>
    </item>
   </channel>
</rss>
