<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Run Remote Agent in AWS ECS as docker task? in Installing and Upgrading</title>
    <link>https://community.qlik.com/t5/Installing-and-Upgrading/Run-Remote-Agent-in-AWS-ECS-as-docker-task/m-p/2514731#M12692</link>
    <description>&lt;P&gt;Guten Tag.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;We don't deliver remote engine on container. However, you can create your own DOCKERFILE with respecting the supported distribution (base image ) &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For instance : &lt;/P&gt;
&lt;PRE class="MuiBox-root css-15znsqi" tabindex="0"&gt;&lt;CODE class="MuiTypography-root MuiTypography-code-block language-dockerfile css-5uzr1g hljs" data-highlighted="yes"&gt;&lt;SPAN class="hljs-keyword"&gt;FROM&lt;/SPAN&gt; eclipse-temurin:&lt;/CODE&gt;17&lt;BR /&gt;COPY ./Talend-RemoteEngine-V2.13.9-279-Linux-x64.run /&lt;BR /&gt;#check installer option with --help &lt;BR /&gt;RUN /Talend-RemoteEngine-V2.13.9-279-Linux-x64.run --mode unattended --installdir &amp;lt;installdir&amp;gt; --region &amp;lt;region&amp;gt; --authkey &amp;lt;authkey&amp;gt; &lt;BR /&gt;RUN rm /Talend-RemoteEngine-V2.13.9-279-Linux-x64.run&lt;BR /&gt;CMD $INSTALL_PATH/bin/start&lt;/PRE&gt;
&lt;P&gt;Then forom this created image, run the container with port redirection&amp;nbsp; for inbound packets: &lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/talend/en-US/installation-guide-windows/Cloud/region-agnostic-urls-and-port-information" target="_blank"&gt;https://help.qlik.com/talend/en-US/installation-guide-windows/Cloud/region-agnostic-urls-and-port-information&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Keep in mind &lt;/P&gt;
&lt;P class="p"&gt;&lt;SPAN class="keyword"&gt;Qlik&lt;/SPAN&gt; supports running on virtual machines and Docker containers. For both virtualization systems and Linux-based Docker containers, &lt;SPAN class="keyword"&gt;Qlik&lt;/SPAN&gt; relies on the vendors’ compatibility statements to ensure the proper running and execution of the &lt;SPAN class="keyword"&gt;Talend&lt;/SPAN&gt; software.&lt;/P&gt;
&lt;P class="p"&gt;&lt;SPAN class="keyword"&gt;Qlik&lt;/SPAN&gt; does not deliver prepackaged Docker Images or Dockerfile for &lt;SPAN class="keyword"&gt;Talend&lt;/SPAN&gt; applications.&lt;/P&gt;
&lt;P class="p"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/talend/en-US/installation-guide-linux/8.0/compatible-operating-systems#anchor-3" target="_blank"&gt;https://help.qlik.com/talend/en-US/installation-guide-linux/8.0/compatible-operating-systems#anchor-3&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 17 Apr 2025 14:38:51 GMT</pubDate>
    <dc:creator>david_lucas</dc:creator>
    <dc:date>2025-04-17T14:38:51Z</dc:date>
    <item>
      <title>Run Remote Agent in AWS ECS as docker task?</title>
      <link>https://community.qlik.com/t5/Installing-and-Upgrading/Run-Remote-Agent-in-AWS-ECS-as-docker-task/m-p/2499576#M12617</link>
      <description>&lt;P&gt;Is it possible to run the remote agent as a docker task in AWS ECS? Is there any documentation available? I searched on google but could not find anything that seemed to be relevant...&lt;/P&gt;</description>
      <pubDate>Mon, 30 Dec 2024 16:22:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Installing-and-Upgrading/Run-Remote-Agent-in-AWS-ECS-as-docker-task/m-p/2499576#M12617</guid>
      <dc:creator>bernhardlenz</dc:creator>
      <dc:date>2024-12-30T16:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: Run Remote Agent in AWS ECS as docker task?</title>
      <link>https://community.qlik.com/t5/Installing-and-Upgrading/Run-Remote-Agent-in-AWS-ECS-as-docker-task/m-p/2514731#M12692</link>
      <description>&lt;P&gt;Guten Tag.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;We don't deliver remote engine on container. However, you can create your own DOCKERFILE with respecting the supported distribution (base image ) &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For instance : &lt;/P&gt;
&lt;PRE class="MuiBox-root css-15znsqi" tabindex="0"&gt;&lt;CODE class="MuiTypography-root MuiTypography-code-block language-dockerfile css-5uzr1g hljs" data-highlighted="yes"&gt;&lt;SPAN class="hljs-keyword"&gt;FROM&lt;/SPAN&gt; eclipse-temurin:&lt;/CODE&gt;17&lt;BR /&gt;COPY ./Talend-RemoteEngine-V2.13.9-279-Linux-x64.run /&lt;BR /&gt;#check installer option with --help &lt;BR /&gt;RUN /Talend-RemoteEngine-V2.13.9-279-Linux-x64.run --mode unattended --installdir &amp;lt;installdir&amp;gt; --region &amp;lt;region&amp;gt; --authkey &amp;lt;authkey&amp;gt; &lt;BR /&gt;RUN rm /Talend-RemoteEngine-V2.13.9-279-Linux-x64.run&lt;BR /&gt;CMD $INSTALL_PATH/bin/start&lt;/PRE&gt;
&lt;P&gt;Then forom this created image, run the container with port redirection&amp;nbsp; for inbound packets: &lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/talend/en-US/installation-guide-windows/Cloud/region-agnostic-urls-and-port-information" target="_blank"&gt;https://help.qlik.com/talend/en-US/installation-guide-windows/Cloud/region-agnostic-urls-and-port-information&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Keep in mind &lt;/P&gt;
&lt;P class="p"&gt;&lt;SPAN class="keyword"&gt;Qlik&lt;/SPAN&gt; supports running on virtual machines and Docker containers. For both virtualization systems and Linux-based Docker containers, &lt;SPAN class="keyword"&gt;Qlik&lt;/SPAN&gt; relies on the vendors’ compatibility statements to ensure the proper running and execution of the &lt;SPAN class="keyword"&gt;Talend&lt;/SPAN&gt; software.&lt;/P&gt;
&lt;P class="p"&gt;&lt;SPAN class="keyword"&gt;Qlik&lt;/SPAN&gt; does not deliver prepackaged Docker Images or Dockerfile for &lt;SPAN class="keyword"&gt;Talend&lt;/SPAN&gt; applications.&lt;/P&gt;
&lt;P class="p"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/talend/en-US/installation-guide-linux/8.0/compatible-operating-systems#anchor-3" target="_blank"&gt;https://help.qlik.com/talend/en-US/installation-guide-linux/8.0/compatible-operating-systems#anchor-3&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Apr 2025 14:38:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Installing-and-Upgrading/Run-Remote-Agent-in-AWS-ECS-as-docker-task/m-p/2514731#M12692</guid>
      <dc:creator>david_lucas</dc:creator>
      <dc:date>2025-04-17T14:38:51Z</dc:date>
    </item>
  </channel>
</rss>

