GitXplorerGitXplorer
b

docker-piwik

public
4 stars
7 forks
2 issues

Commits

List of commits on branch master.
Verified
24dd833e7b57a455cd0df3b8b540b9e6ca6b76c6

Merge pull request #4 from benhutchins/revert-2-patch-2

bbenhutchins committed 7 years ago
Verified
7a8caf244dfd90fe3afae13467020e62735ba1e7

Revert "Update to 3.2.1"

bbenhutchins committed 7 years ago
Verified
2ef610661ee24ee9fd033f99dac5711575e7f179

Merge pull request #2 from riemers/patch-2

bbenhutchins committed 7 years ago
Verified
74e12585b07cfaab41edb83d12d17ae5e958eebb

Update to 3.2.1

rriemers committed 7 years ago
Unverified
df17d1224133aad6b5960beac0a66ceef7467cca

Merge pull request #1 from riemers/patch-1

bbenhutchins committed 7 years ago
Unverified
b608ae1463fb11849ce3978488555762233e3b7e

Update to 3.2.0

rriemers committed 7 years ago

README

The README file for this repository.

What is Piwik?

Piwik is an open-source web analytics platform, providing detailed reports of web traffic.

http://piwik.org/

Usage

docker run \
  --name piwik \
  --link some-mysql:mysql \
  -p 80:80 \
  -v $(pwd)/config:/var/www/html/config/:rw \
  benhutchins/piwik

Database

The example above uses --link to connect the Piwik container with a running mysql container. To start a mysql container simply run:

docker run \
  --name some-mysql \
  -e MYSQL_ROOT_PASSWORD=password \
  -e MYSQL_DATABASE=piwik \
  -e MYSQL_USER=piwik \
  -e MYSQL_PASSWORD=password \
  mysql

You'll want to configure the database name, user and password whcih will be used as part of the Piwik installation process.

Docker Compose

To run with Docker Compose, copy the docker-compose.yml from this repository and run:

docker-compose up