<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>docker – Heaplevel AB</title>
	<atom:link href="https://heaplevel.com/tag/docker/feed/" rel="self" type="application/rss+xml" />
	<link>https://heaplevel.com</link>
	<description>Software Development Partner</description>
	<lastBuildDate>Thu, 25 Jul 2019 17:00:36 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://heaplevel.com/wp-content/uploads/2020/01/cropped-Heaplevel-1-32x32.png</url>
	<title>docker – Heaplevel AB</title>
	<link>https://heaplevel.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to setup Matomo with MariaDB on Docker</title>
		<link>https://heaplevel.com/blog/how-to-setup-matomo-with-mariadb-on-docker/</link>
		
		<dc:creator><![CDATA[Heaplevel]]></dc:creator>
		<pubDate>Tue, 23 Jul 2019 04:02:22 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[docker]]></category>
		<category><![CDATA[mariadb]]></category>
		<category><![CDATA[matomo]]></category>
		<guid isPermaLink="false">https://heaplevel.com/?p=70</guid>

					<description><![CDATA[<p>This will spin up a Matomo instance on MariaDB running on the default port 3306. You can then access the Matomo instance to continue the installation by navigation to your hostname:3306. E.g. if you&#8217;re running this on your VPS it will be your http://&#60;VPS IP>:3306 http://localhost:3306 if you&#8217;re on your local dev machine. The above &#8230; </p>
<p class="link-more"><a href="https://heaplevel.com/blog/how-to-setup-matomo-with-mariadb-on-docker/" class="more-link">Continue reading<span class="screen-reader-text"> "How to setup Matomo with MariaDB on Docker"</span></a></p>
<p>The post <a href="https://heaplevel.com/blog/how-to-setup-matomo-with-mariadb-on-docker/">How to setup Matomo with MariaDB on Docker</a> first appeared on <a href="https://heaplevel.com">Heaplevel AB</a>.</p>]]></description>
										<content:encoded><![CDATA[<pre class="wp-block-code"><code>$ docker run --name matomo-mariadb -e MYSQL_ROOT_PASSWORD=my-secret-pw -d mariadb:latest</code></pre>



<pre class="wp-block-code"><code>$ docker run -d --link matomo-mariadb:db -p 8089:80 -p 3306:3306 matomo</code></pre>



<p>This will spin up a Matomo instance on MariaDB running on the default port 3306. You can then access the Matomo instance to continue the installation by navigation to your hostname:3306. E.g. if you&#8217;re running this on your VPS it will be your http://&lt;VPS IP>:3306</p>



<p>http://localhost:3306 if you&#8217;re on your local dev machine.</p>



<p>The above will not persist your data, in order to do that you need to use volumes on Docker. So if you plan on restarting your Docker container (likely) then you should use volumes. Otherwise when you restart the Docker container you&#8217;ll have to reinstall the Matomo instance.</p>



<pre class="wp-block-code"><code>docker volume create matomo-vol
docker run -d --link matomo-mariadb:db -p 8089:80 -p 3306:3306 -v matomo-vol:/var/www/html matomo
</code></pre>



<p></p><p>The post <a href="https://heaplevel.com/blog/how-to-setup-matomo-with-mariadb-on-docker/">How to setup Matomo with MariaDB on Docker</a> first appeared on <a href="https://heaplevel.com">Heaplevel AB</a>.</p>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
