<?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[Docker Support]]></title><description><![CDATA[<p dir="auto">Re: <a href="/topic/2459/deploying-via-docker">Deploying via Docker</a></p>
<p dir="auto">Hi,</p>
<p dir="auto">Same use case. I would like to deploy Mango using Docker. I'm referencing a thread from a couple years ago. An IAS employee shared a script he was using for testing. Has there been any progress, or official support added for Docker since then?</p>
<p dir="auto">Thanks!</p>
]]></description><link>https://forum.mango-os.com/topic/4124/docker-support</link><generator>RSS for Node</generator><lastBuildDate>Tue, 09 Jun 2026 23:45:43 GMT</lastBuildDate><atom:link href="https://forum.mango-os.com/topic/4124.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 29 Mar 2019 20:35:10 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Docker Support on Mon, 08 Apr 2019 16:31:43 GMT]]></title><description><![CDATA[<p dir="auto">Thanks, <a class="plugin-mentions-user plugin-mentions-a" href="/user/phildunlap" aria-label="Profile: phildunlap">@<bdi>phildunlap</bdi></a>. Works perfectly.</p>
]]></description><link>https://forum.mango-os.com/post/21771</link><guid isPermaLink="true">https://forum.mango-os.com/post/21771</guid><dc:creator><![CDATA[nallenscott]]></dc:creator><pubDate>Mon, 08 Apr 2019 16:31:43 GMT</pubDate></item><item><title><![CDATA[Reply to Docker Support on Fri, 29 Mar 2019 21:22:27 GMT]]></title><description><![CDATA[<p dir="auto">Hi nallenscott, welcome to the forum!</p>
<p dir="auto">Docker support was not taken too much father than Jared was indicating in that thread. Here's a script we use to deploy our nightly build to our test server, but with the URL for the nightly build swapped for a URL to grab the current core (would require updating with core updating) from our store:</p>
<pre><code>FROM openjdk:8-jdk
MAINTAINER Jared Wiltshire &lt;jared@infiniteautomation.com&gt;

RUN mkdir -p /opt/mango \
    &amp;&amp; wget -O /tmp/m2m2-core.zip https://store.infiniteautomation.com/downloads/fullCores/enterprise-m2m2-core-3.5.6.zip \
    &amp;&amp; unzip /tmp/m2m2-core.zip -d /opt/mango \
    &amp;&amp; rm  /tmp/m2m2-core.zip

ENV MA_HOME /opt/mango
ENV MA_CP $MA_HOME/overrides/classes:$MA_HOME/classes:$MA_HOME/overrides/properties:$MA_HOME/overrides/lib/*:$MA_HOME/lib/*

EXPOSE 8080
WORKDIR /opt/mango
ENTRYPOINT exec java -server -cp $MA_CP -Dma.home=$MA_HOME -Djava.library.path=$MA_HOME/overrides/lib:$MA_HOME/lib:/usr/lib/jni/:$PATH com.serotonin.m2m2.Main
</code></pre>
<p dir="auto">From:<br />
<a href="https://github.com/infiniteautomation/misc-files/blob/master/Dockerfile" rel="nofollow ugc">https://github.com/infiniteautomation/misc-files/blob/master/Dockerfile</a></p>
]]></description><link>https://forum.mango-os.com/post/21699</link><guid isPermaLink="true">https://forum.mango-os.com/post/21699</guid><dc:creator><![CDATA[phildunlap]]></dc:creator><pubDate>Fri, 29 Mar 2019 21:22:27 GMT</pubDate></item></channel></rss>