From db93419075dcb0e24c48bba055582180df9438ea Mon Sep 17 00:00:00 2001 From: pierreozoux Date: Fri, 4 Mar 2016 11:25:27 +0000 Subject: [PATCH] Adds piwik --- piwik/README-short.txt | 1 + piwik/content.md | 48 ++++++++++++++++++++++++++++++++++++++++++ piwik/license.md | 1 + piwik/logo.svg | 25 ++++++++++++++++++++++ update.sh | 1 + 5 files changed, 76 insertions(+) create mode 100644 piwik/README-short.txt create mode 100644 piwik/content.md create mode 100644 piwik/license.md create mode 100644 piwik/logo.svg diff --git a/piwik/README-short.txt b/piwik/README-short.txt new file mode 100644 index 000000000..550c0761c --- /dev/null +++ b/piwik/README-short.txt @@ -0,0 +1 @@ +Piwik is the leading open-source analytics platform that gives you more than powerful analytics. diff --git a/piwik/content.md b/piwik/content.md new file mode 100644 index 000000000..0252e2ee4 --- /dev/null +++ b/piwik/content.md @@ -0,0 +1,48 @@ +# Piwik + +[![Build Status](https://travis-ci.org/piwik/docker-piwik.svg?branch=master)](https://travis-ci.org/piwik/docker-piwik) + +Piwik is the leading open-source analytics platform that gives you more than just powerful analytics: + +- Free open-source software +- 100% data ownership +- User privacy protection +- User-centric insights +- Customisable and extensible + +%%LOGO%% + +# How to use this image + +```console +$ docker run --name some-%%REPO%% --link some-mysql:db -d %%REPO%% +``` + +Now you can get access to fpm running on port 9000 inside the container. If you want to access it from the Internets, we recommend using a reverse proxy in front. You can find more information on that on the [docker-compose](#docker-compose) section. + +## Via docker-compose + +You can use a setup that is used in production at [IndieHosters/piwik](https://github.com/indiehosters/piwik). + +## Installation + +Once started, you'll arrive at the configuration wizard. At the `Database Setup` step, please enter the following: + +- Database Server: `db` +- Login: `root` +- Password: MYSQL_ROOT_PASSWORD +- Database Name: piwik (or you can choose) + +And leave the rest as default. + +Then you can continue the installation with the super user. + +## Contribute + +Pull requests are very welcome! + +We'd love to hear your feedback and suggestions in the issue tracker: [github.com/piwik/docker-piwik/issues](https://github.com/piwik/docker-piwik/issues). + +## GeoIP + +This product includes GeoLite data created by MaxMind, available from [http://www.maxmind.com](http://www.maxmind.com). diff --git a/piwik/license.md b/piwik/license.md new file mode 100644 index 000000000..32bc38cda --- /dev/null +++ b/piwik/license.md @@ -0,0 +1 @@ +View [license information](https://github.com/piwik/piwik/blob/master/LEGALNOTICE) for the software contained in this image. diff --git a/piwik/logo.svg b/piwik/logo.svg new file mode 100644 index 000000000..8bdd2af81 --- /dev/null +++ b/piwik/logo.svg @@ -0,0 +1,25 @@ + + + + + + + + + diff --git a/update.sh b/update.sh index 8fd1ca5b6..ca06873b3 100755 --- a/update.sh +++ b/update.sh @@ -59,6 +59,7 @@ declare -A otherRepos=( [oraclelinux]='https://github.com/oracle/docker' [perl]='https://github.com/Perl/docker-perl' [photon]='https://github.com/frapposelli/photon-docker-image' + [piwik]='https://github.com/piwik/docker-piwik' [r-base]='https://github.com/rocker-org/rocker' [rakudo]='https://github.com/perl6/docker' [registry]='https://github.com/docker/docker-registry'