<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[.Net Blog]]></title><description><![CDATA[.Net Blog]]></description><link>https://bushidonet.hashnode.dev</link><generator>RSS for Node</generator><lastBuildDate>Fri, 04 Sep 2026 06:21:04 GMT</lastBuildDate><atom:link href="https://bushidonet.hashnode.dev/rss.xml" rel="self" type="application/rss+xml"/><language><![CDATA[en]]></language><ttl>60</ttl><item><title><![CDATA[Aprendiendo Docker: Guia para principiantes]]></title><description><![CDATA[Componentes Docker
Es el componente más pequeño en el mundo de Docker. Todas las aplicaciones se ejecutan en un contenedor. Lo más común es que sea una aplicación por contenedor, y cada uno debe tener un único propósito.
Docker tiene Cliente, Daemon ...]]></description><link>https://bushidonet.hashnode.dev/aprendiendo-docker-guia-para-principiantes</link><guid isPermaLink="true">https://bushidonet.hashnode.dev/aprendiendo-docker-guia-para-principiantes</guid><category><![CDATA[Docker]]></category><category><![CDATA[contenedores]]></category><category><![CDATA[ Imagenes]]></category><dc:creator><![CDATA[yevgen letin]]></dc:creator><pubDate>Mon, 21 Apr 2025 17:45:37 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1745633637416/846431de-274f-474b-93ea-4a58f2882b5e.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<h2 id="heading-componentes-docker">Componentes Docker</h2>
<p>Es el componente más pequeño en el mundo de Docker. Todas las aplicaciones se ejecutan en un contenedor. Lo más común es que sea una aplicación por contenedor, y cada uno debe tener un único propósito.</p>
<h3 id="heading-docker-tiene-cliente-daemon-y-host">Docker tiene Cliente, Daemon y Host</h3>
<p><strong>Cliente</strong> -&gt; es el terminal donde nosotros nos podemos conectar al servicio DAEMON. El servicio puede estar funcionando en nuestra maquina como en un servidor remoto pero casi siempre suele ser en la misma maquina donde esta el cliente.</p>
<p><strong>Daemon</strong> -&gt; es un servicio que se encarga de dar todo el servicio a los contenedores.</p>
<p><strong>Host</strong>-&gt; Aloja al servicio de docker DAEMON.</p>
<p><strong>Image</strong>-&gt; es la imagen base desde donde se originan los contenedores, puede haber una imagen pero diferentes contenedores creados con la misma imagen.</p>
<p><strong>Registry</strong> -&gt; Es un servidor donde se almacenan y distribuyen imágenes de Docker</p>
<p><strong>Repository</strong> -&gt; Un repository (repositorio) es una colección de versiones (tags) de una misma imagen dentro del registry.</p>
<h3 id="heading-como-funcionan-los-contenedores">¿Como funcionan los contenedores?</h3>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1745254788066/cfe6133a-a8cb-41a7-9969-bc6072095392.png" alt /></p>
<p>Todos los contenedores docker se despliegan en un sistema linux. Todo sistema os linux tiene un core linux kernel , Ram, CPU, Network, Disco. Para poder crear contenedores nosotros necesitamos Docker engine este es el encargado de arrancar servicio DAEMON.</p>
<p>Este es lo mínimo necesario para crear contenedores.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1745254842372/e8d2d5df-cb09-4cb6-956c-f9ca0b6522ab.png" alt /></p>
<p>Todos los contenedores comparten el Kernel, todos los contenedores tienen un sitio reservado de memoria en disco donde se guardan los archivos de ese único contenedor.</p>
<p>Los contenedores tiene un proceso independiente de otros contenedores con sus procesos.</p>
<p>Tenemos que entender que todos los contenedores utilizan los mismos recursos en un host. Hay que estar atentos de que un único contenedor no ocupe todos los recursos, ya que ralentizará a los demás contenedores.</p>
<h3 id="heading-con-una-unica-imagen-puedo-rear-muchos-contenedores">¿Con una única imagen puedo rear muchos contenedores?</h3>
<p>Cuando creamos diferentes contenedores a partir de una misma imagen, es importante saber que algunos archivos comunes se compartirán en memoria y estarán en un solo lugar. Estos archivos no se duplicarán según el número de contenedores.</p>
<p>De esta manera, Docker reutiliza capas entre diferentes imágenes y solo guarda las capas que no tiene almacenadas. Así optimiza el uso de los recursos.</p>
<p>Una vez que un contenedor termina, todos los archivos en el disco se eliminan. Para evitar la pérdida de datos, se puede vincular a un volumen (espacio en disco) de nuestra máquina. Esto se explicará más adelante.</p>
<p>Una imagen - muchos contenedor</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1745254967287/3c361be0-f538-4ee0-9052-67df02749ec6.png" alt /></p>
<p>Tenemos una <strong>imagen</strong> que es un conjunto de <strong>archivos estáticos.</strong> A partir de una imagen, se pueden crear muchos contenedores. Por ejemplo, podemos descargar una imagen de Docker Hub, guardarla en nuestro ordenador y luego usarla para crear muchos contenedores.</p>
<h3 id="heading-que-son-las-capas-de-una-imagen">¿Que son las capas de una imagen?</h3>
<p>Una imagen se compone de diferentes capas para optimizar el espacio. Cuando distintas imágenes comparten las mismas capas, docker no necesita almacenar cada capa por separado; basta con almacenarla una vez y luego, al crear la imagen, se monta a partir de las diferentes capas.</p>
<p>Todas las capas son de solo lectura y no se pueden sobreescribir una vez que se ha creado el contenedor.</p>
<h2 id="heading-repositorios-docker">Repositorios DOCKER</h2>
<p>Las imágenes son muy fáciles de almacenar y distribuir porque son un conjunto de archivos.</p>
<p>Las imágenes se guardan en repositorios. En un solo repositorio, se pueden almacenar diferentes versiones de la misma imagen, y los repositorios pueden ser públicos o privados.</p>
<p>Todas las imágenes tienen una versión o etiqueta.</p>
<p>etiqueta <strong>latest</strong> -&gt; última versión</p>
<p>etiqueta <strong>alpine</strong> -&gt; es la versión mínima.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1745255257736/1898a048-e0e3-4910-a3d8-643e9dd10394.png" alt /></p>
<h3 id="heading-como-puedo-saber-la-version-de-docker-en-local">¿Como puedo saber la version de docker en local?</h3>
<pre><code class="lang-plaintext">docker version
</code></pre>
<p>Al tener el docker desktop apagado, nos muestra que el cliente no puede conectarse al servicio Docker DAEMON.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1745255548353/80ebeb3f-455f-461b-b6e7-145ac74380ab.png" alt class="image--center mx-auto" /></p>
<h3 id="heading-como-visualizar-todos-los-contenedores-en-mi-maquina">¿Como visualizar todos los contenedores en mi máquina?</h3>
<pre><code class="lang-plaintext">docker ps -a
</code></pre>
<p>Muestra tanto los contenedores que están en funcionamiento como los que están detenidos.</p>
<h3 id="heading-como-visualizar-todas-las-imagenes-docker-guardadas-en-mi-maquina">¿Como visualizar todas las imágenes docker guardadas en mi máquina?</h3>
<pre><code class="lang-plaintext">docker images
</code></pre>
<h3 id="heading-como-me-puedo-descargar-una-imagen-y-correrla-en-mi-docker">¿Como me puedo descargar una imagen y correrla en mi docker?</h3>
<pre><code class="lang-bash">docker run hello-world
</code></pre>
<p>Con este comando, Docker intenta crear un contenedor. Primero busca la imagen localmente, y si no existe, la buscará en Docker Hub. Luego descarga la imagen, la guarda localmente y crea el contenedor.</p>
<p>hello-world es una imagen oficial que se encuentra en Docker Hub. Actualmente, no la tenemos en nuestro ordenador, pero si la ejecutamos, se descargará localmente desde Docker Hub la versión más reciente (latest) y se creará un contenedor.</p>
<pre><code class="lang-plaintext">docker pull hello-world
</code></pre>
<p>Este comando solo descarga la imagen localmente pero no crea el contenedor</p>
<pre><code class="lang-bash">docker container prune
</code></pre>
<p>Comando para eliminar todos los contenedores.</p>
<pre><code class="lang-plaintext">docker run -it busybox
</code></pre>
<h3 id="heading-y-como-puedo-conectarme-a-un-contenedor">¿Y como puedo conectarme a un contenedor?</h3>
<p>El <strong>-it</strong> entra dentro del contenedor y ejecuta un terminal interactivo creando un proceso dentro del contenedor. Si un contenedor no tiene ningún proceso abierto es finalizado automaticamente.</p>
<p>Una vez dentro del terminal escribimos <strong>ls</strong> y visualizamos todos los directorios.</p>
<pre><code class="lang-plaintext">hostname -i
</code></pre>
<p>Visualizamos el hostname del contenedor que le fue asignado.</p>
<h3 id="heading-puedo-saber-si-desde-dentro-del-contenedor-tengo-acceso-a-internet">¿Puedo saber si desde dentro del contenedor tengo acceso a internet?</h3>
<pre><code class="lang-plaintext">ping 8.8.8.8
</code></pre>
<p>Lo único que necesitamos hacer desde la terminal del contenedor hacer un ping.</p>
<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1744888983501&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1744888983505&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1744888983509&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1744888983513&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1744888983516&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1744888983520&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1744888983523&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1744888983527&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1744888983530&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1744888983533&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1744888983536&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1744888983540&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1744888983543&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1744888983546&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1744888983549&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1744888983553&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1744888983556&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD7DA238475954&amp;mdt=1744888983792&amp;rticks=1744888983885&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD7DA238475954&amp;mdt=1744888983792&amp;rticks=1744888983885&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD7DA238475954&amp;mdt=1744888983792&amp;rticks=1744888983885&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD7DA238475954&amp;mdt=1744888983792&amp;rticks=1744888983885&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD7DA238475954&amp;mdt=1744888983792&amp;rticks=1744888983885&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD7DA238475954&amp;mdt=1744888983792&amp;rticks=1744888983885&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD7DA238475954&amp;mdt=1744888983792&amp;rticks=1744888983885&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD7DA238475954&amp;mdt=1744888983792&amp;rticks=1744888983885&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD7DA238475954&amp;mdt=1744888983792&amp;rticks=1744888983885&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD7DA238475954&amp;mdt=1744888983792&amp;rticks=1744888983885&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD7DA238475954&amp;mdt=1744888983792&amp;rticks=1744888983885&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD7DA238475954&amp;mdt=1744888983792&amp;rticks=1744888983885&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD7DA238475954&amp;mdt=1744888983792&amp;rticks=1744888983885&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD7DA238475954&amp;mdt=1744888983792&amp;rticks=1744888983885&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD7DA238475954&amp;mdt=1744888983792&amp;rticks=1744888983885&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD7DA238475954&amp;mdt=1744888983792&amp;rticks=1744888983885&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD7DA238475954&amp;mdt=1744888983792&amp;rticks=1744888983885&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1745251547695&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1745251547746&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD80EE614DDFCC&amp;mdt=1745251547924&amp;rticks=1745251547954&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD80EE614DDFCC&amp;mdt=1745251547925&amp;rticks=1745251547954&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1745251552561&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD80EE641D8B50&amp;mdt=1745251552615&amp;rticks=1745251552670&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1745251569329&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD80EE6E1B8BDA&amp;mdt=1745251569379&amp;rticks=1745251569434&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1745251576029&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD80EE72198087&amp;mdt=1745251576079&amp;rticks=1745251576132&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1745251880814&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="fpt_frame" src="https://merchantpool1.linkedin.com/?session_id=f264da73-71b3-4559-8d0c-2cc44e371474&amp;CustomerId=fb6bbd47-fa7c-4264-b4e9-b25948407586&amp;PageId=&amp;w=8DD80EF27DAE6F2&amp;mdt=1745251881059&amp;rticks=1745251881067&amp;u1=&amp;u3=15.1.1&amp;u4=arm&amp;u5=64&amp;u2=(Microsoft%20Edge%2C135.0.3179.73)%2C(Not-A.Brand%2C8.0.0.0)%2C(Chromium%2C135.0.7049.85)" style="box-sizing:inherit;margin:0px;padding:0px;border:0px;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgb(0, 0, 0) none 0px;font-family:-apple-system, system-ui,"></iframe>

<iframe id="humanThirdPartyIframe" src="https://li.protechts.net/index.html?ts=1745252209364&amp;r_id=AAYy95%2FqcByMOMBFLxYDxw%3D%3D&amp;app_id=PXdOjV695v&amp;uc=scraping&amp;d_id=2ce0858c4e63d584927aae7f81ddc88e89a2175bd399231d720826f9f20b64b1" sandbox="allow-same-origin allow-scripts" style="box-sizing:inherit;margin:0px;padding:0px;border:none;font-size:16px;vertical-align:baseline;background:none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0);outline:rgba(0, 0, 0, 0.9) none 0px;font-family:-apple-system, system-ui,"></iframe>]]></content:encoded></item></channel></rss>