<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: shroomlife 🍄</title>
    <description>The latest articles on DEV Community by shroomlife 🍄 (@shroomlife).</description>
    <link>https://dev.to/shroomlife</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F136739%2Ff2389da0-e47d-473a-a258-c19c1998d099.jpg</url>
      <title>DEV Community: shroomlife 🍄</title>
      <link>https://dev.to/shroomlife</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/shroomlife"/>
    <language>en</language>
    <item>
      <title>docker-https-proxy to proxy your docker containers</title>
      <dc:creator>shroomlife 🍄</dc:creator>
      <pubDate>Wed, 04 Sep 2019 15:56:26 +0000</pubDate>
      <link>https://dev.to/shroomlife/docker-https-proxy-to-proxy-your-docker-containers-3d07</link>
      <guid>https://dev.to/shroomlife/docker-https-proxy-to-proxy-your-docker-containers-3d07</guid>
      <description>&lt;p&gt;Hey,&lt;/p&gt;

&lt;p&gt;as a developer I use docker on my servers and sometimes I want to have multiple containers running on one server and they should be reachable through different hostnames. As this proxy feature is my only requirement I don't want to use Apache or Nginx bloated services. They have a lot of features but they are not needed for just a splitting purpose.&lt;/p&gt;

&lt;p&gt;So I created a little neat docker image that can easily be used as a main proxy container to proxy requests among hostnames accross your containers.&lt;/p&gt;

&lt;p&gt;Also I wanted to have HTTPs working for my proxy so I added a self-signed certificate that can easily be used behind a Cloudflare account. You can also add your own certificate if want to. The whole thing is #opensource!&lt;/p&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/shroomlife/docker-https-proxy"&gt;https://github.com/shroomlife/docker-https-proxy&lt;/a&gt;&lt;br&gt;
Docker Hub: &lt;a href="https://hub.docker.com/r/shroomlife/docker-https-proxy"&gt;https://hub.docker.com/r/shroomlife/docker-https-proxy&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  easy setup with docker-compose
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="na"&gt;version&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s1"&gt;'&lt;/span&gt;&lt;span class="s"&gt;3.3'&lt;/span&gt;
&lt;span class="na"&gt;services&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="na"&gt;proxy&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="na"&gt;container_name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;proxy&lt;/span&gt;
    &lt;span class="na"&gt;image&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;shroomlife/docker-https-proxy:latest&lt;/span&gt;
    &lt;span class="na"&gt;ports&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;80:80"&lt;/span&gt;
      &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;443:443"&lt;/span&gt;
  &lt;span class="na"&gt;example.com&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="na"&gt;container_name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;example.com.proxy&lt;/span&gt;
    &lt;span class="na"&gt;image&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;httpd:latest&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Just add &lt;code&gt;.proxy&lt;/code&gt; to your &lt;code&gt;example.com&lt;/code&gt; domain and you are ready to go!&lt;/p&gt;

&lt;p&gt;There you can also find a helpful README for setting it up for your own needs. I hope I can help other developers solve a common problem with ease.&lt;/p&gt;

&lt;p&gt;Would love to hear some feedback from the community!&lt;/p&gt;

&lt;p&gt;Best,&lt;br&gt;
shroomlie&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>docker</category>
      <category>github</category>
      <category>javascript</category>
    </item>
    <item>
      <title>hello oerwi! best counter app ever!</title>
      <dc:creator>shroomlife 🍄</dc:creator>
      <pubDate>Wed, 14 Aug 2019 20:43:08 +0000</pubDate>
      <link>https://dev.to/shroomlife/oerwi-hello-best-tallysheet-counter-app-2ofa</link>
      <guid>https://dev.to/shroomlife/oerwi-hello-best-tallysheet-counter-app-2ofa</guid>
      <description>&lt;p&gt;Hey,&lt;/p&gt;

&lt;p&gt;I created a little app for a colleague to count cake sale at his sport club events.&lt;/p&gt;

&lt;p&gt;Have a look and fork if you like!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://oerwi.app"&gt;https://oerwi.app&lt;/a&gt;&lt;br&gt;
github: &lt;a href="https://github.com/shroomlife/oerwilist"&gt;https://github.com/shroomlife/oerwilist&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--IP9XYDBv--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://thepracticaldev.s3.amazonaws.com/i/mai707exuzzappa93ilr.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--IP9XYDBv--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://thepracticaldev.s3.amazonaws.com/i/mai707exuzzappa93ilr.png" alt="Alt Text" width="800" height="1644"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--bmjQ4fYN--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://thepracticaldev.s3.amazonaws.com/i/w7h6g9149y7140jevcd1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--bmjQ4fYN--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://thepracticaldev.s3.amazonaws.com/i/w7h6g9149y7140jevcd1.png" alt="Alt Text" width="800" height="1644"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Happy for any feedback!&lt;/p&gt;

</description>
      <category>tallysheet</category>
      <category>react</category>
      <category>javascript</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
