<?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: Sky Lee</title>
    <description>The latest articles on DEV Community by Sky Lee (@skylee91).</description>
    <link>https://dev.to/skylee91</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%2F117764%2F85200ce8-f104-4e45-ae49-a21c91085820.png</url>
      <title>DEV Community: Sky Lee</title>
      <link>https://dev.to/skylee91</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/skylee91"/>
    <language>en</language>
    <item>
      <title>Multiple applications in multiple containers vs Multiple applications in single container</title>
      <dc:creator>Sky Lee</dc:creator>
      <pubDate>Mon, 23 Oct 2023 05:06:16 +0000</pubDate>
      <link>https://dev.to/skylee91/multiple-applications-in-multiple-containers-vs-multiple-applications-in-single-container-3a5h</link>
      <guid>https://dev.to/skylee91/multiple-applications-in-multiple-containers-vs-multiple-applications-in-single-container-3a5h</guid>
      <description>&lt;p&gt;As a beginner in Docker or container, people always ask why I can't put all the application in a single container and deploy it to anywhere?&lt;br&gt;
Well, technically you can but here are some considerations. &lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;Multiple Applications in Multiple Containers&lt;/th&gt;
&lt;th&gt;Multiple Applications in a Single Container&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Isolation&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Each application runs in its own environment&lt;/td&gt;
&lt;td&gt;All applications share the same environment&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Scaling&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Different parts of an application can be scaled independently&lt;/td&gt;
&lt;td&gt;All applications must be scaled together&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Upgrades&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;One part of an application can be upgraded without affecting the rest&lt;/td&gt;
&lt;td&gt;Upgrading one application may require restarting all applications&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Reuse&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Easier to reuse prebuilt images&lt;/td&gt;
&lt;td&gt;Not as straightforward to reuse prebuilt images&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Simplicity&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Need to manage networking between containers&lt;/td&gt;
&lt;td&gt;No need to manage networking between containers&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Tightly-Coupled Processes&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Not a concern if applications are loosely coupled&lt;/td&gt;
&lt;td&gt;Might be a requirement if applications are tightly coupled&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Source:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://stackoverflow.com/questions/66100027/why-multi-container-docker-apps-are-built"&gt;Why multi-container docker apps are built? - Stack Overflow.&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://docs.docker.com/get-started/07_multi_container/"&gt;Multi container apps | Docker Docs.&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.tutorialworks.com/containers-single-or-multiple-processes/."&gt;Containers: one single process, or multiple processes?.&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://stackoverflow.com/questions/53051686/best-way-to-run-multiple-flask-apps-in-a-single-docker-container"&gt;Best way to run multiple flask apps in a single docker container.&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://learn.microsoft.com/en-us/visualstudio/containers/tutorial-multicontainer?view=vs-2022"&gt;Tutorial: Create a multi-container app with Docker Compose.&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>docker</category>
      <category>container</category>
    </item>
    <item>
      <title>Fluent UI and Emoji used in Microsoft Teams</title>
      <dc:creator>Sky Lee</dc:creator>
      <pubDate>Fri, 20 Oct 2023 06:52:56 +0000</pubDate>
      <link>https://dev.to/skylee91/fluent-ui-and-emoji-used-in-microsoft-teams-20o0</link>
      <guid>https://dev.to/skylee91/fluent-ui-and-emoji-used-in-microsoft-teams-20o0</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/microsoft/fluentui-system-icons"&gt;https://github.com/microsoft/fluentui-system-icons&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/microsoft/fluentui-emoji"&gt;https://github.com/microsoft/fluentui-emoji&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://developer.microsoft.com/en-us/fluentui#/"&gt;https://developer.microsoft.com/en-us/fluentui#/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://fluent2.microsoft.design/iconography"&gt;https://fluent2.microsoft.design/iconography&lt;/a&gt;&lt;/p&gt;

</description>
      <category>frontend</category>
      <category>emoji</category>
      <category>ui</category>
      <category>icon</category>
    </item>
  </channel>
</rss>
