Giter Club home page Giter Club logo

docker-matomo's Introduction

Version Build Status Docker Stars Docker Pulls Docker Repository on Quay Donate Paypal

About

๐Ÿณ Matomo (formerly Piwik) Docker image based on Alpine Linux and Nginx.
If you are interested, check out my other ๐Ÿณ Docker images!

Features

Included

  • Alpine Linux 3.7, Nginx, PHP 7.1
  • Tarball authenticity checked during building process
  • Config, plugins and user preferences in the same folder
  • GeoLite data created by MaxMind for geolocation
  • Cron tasks to archive Matomo reports and update GeoLite data as a "sidecar" container
  • Ability to pass additional options during cron archive
  • Plugins and config are kept across upgrades of this image
  • SSMTP for SMTP relay to send emails
  • OPCache enabled to store precompiled script bytecode in shared memory
  • Redis enabled and ready to enhance server performance

From docker-compose

Docker

Environment variables

  • TZ : The timezone assigned to the container (default: UTC)
  • LOG_LEVEL : Log level of Matomo UI (default: WARN)
  • MEMORY_LIMIT : PHP memory limit (default: 256M)
  • UPLOAD_MAX_SIZE : Upload max size (default: 16M)
  • OPCACHE_MEM_SIZE : PHP OpCache memory consumption (default: 128)
  • SSMTP_HOST : SMTP server host
  • SSMTP_PORT : SMTP server port (default: 25)
  • SSMTP_HOSTNAME : Full hostname (default: $(hostname -f))
  • SSMTP_USER : SMTP username
  • SSMTP_PASSWORD : SMTP password
  • SSMTP_TLS : SSL/TLS (default: NO)

The following environment variables are used only if you run the container as "sidecar" mode :

  • ARCHIVE_OPTIONS : Pass additional options during cron archive
  • CRON_GEOIP : Periodically update GeoIP data (disabled if empty ; ex 0 4 * * *)
  • CRON_ARCHIVE : Periodically execute Matomo archive (disabled if empty ; ex 0 * * * *)

Volumes

  • /data : Contains GeoIP databases, configuration, installed plugins (not core ones), tmp and user folders to store your custom logo

Ports

  • 80 : HTTP port

Use this image

Docker Compose

Docker compose is the recommended way to run this image. Copy the content of folder examples/compose in /var/matomo/ on your host for example. Edit the compose and env files with your preferences and run the following commands :

touch acme.json
chmod 600 acme.json
docker-compose up -d
docker-compose logs -f

Command line

You can also use the following minimal command :

docker run -d -p 80:80 --name matomo \
  -v $(pwd)/data:/data \
  crazymax/matomo:latest

Notes

Sticky sessions

On a HA environment, enable backend sticky sessions on your load balancer. It's required while installing plugins for example.

Cron

If you want to enable the cron job, you have to run a "sidecar" container like in the docker-compose file or run a simple container like this :

docker run -d --name matomo-cron \
  --env-file $(pwd)/matomo.env \
  -e "ARCHIVE_OPTIONS=--concurrent-requests-per-website=3" \
  -e "CRON_ARCHIVE=0 * * * *" \
  -v $(pwd)/data:/data \
  crazymax/matomo:latest /usr/local/bin/cron

Then if you have enabled CRON_ARCHIVE to automatically archive the reports, you have to disable Matomo archiving to trigger from the browser. Go to System > General settings :

Disable Matomo archiving from browser

Change location provider

As GeoIP module for Nginx is installed and uses GeoIP data, you have to select GeoIP (HTTP Server Module) in System > Geolocation :

Change location provider

Behind a reverse proxy ?

If you are running Matomo behind a reverse proxy, add this to your config.ini.php :

[General]
assume_secure_protocol = 1 # 0=http 1=https
proxy_client_headers[] = HTTP_X_FORWARDED_FOR
proxy_client_headers[] = HTTP_X_REAL_IP
proxy_host_headers[] = HTTP_X_FORWARDED_HOST

Redis cache

To use Redis as a cache (useful if your Matomo environment consists of multiple servers), add this to your config.ini.php :

[Cache]
backend = chained

[ChainedCache]
backends[] = array
backends[] = redis

[RedisCache]
host = "redis" # Docker service name for Redis 
port = 6379
timeout = 0.0
password = ""
database = 14

In case you are using queued tracking: Make sure to configure a different database! Otherwise queued requests will be flushed.

Upgrade

You can upgrade Matomo automatically through the UI, it works well. But i recommend to recreate the container whenever i push an update :

docker-compose pull
docker-compose up -d

How can i help ?

All kinds of contributions are welcomed ๐Ÿ™Œ!
The most basic way to show your support is to star ๐ŸŒŸ the project, or to raise issues ๐Ÿ’ฌ
But we're not gonna lie to each other, I'd rather you buy me a beer or two ๐Ÿป!

Paypal

License

MIT. See LICENSE for more details.

docker-matomo's People

Contributors

crazy-max avatar noplanman avatar

Watchers

Vance avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.