A piwik container. built so I can have it on my raspberry too.
10K+
Made because I needed a Piwik installation for my raspberry.
Took too long to build using the code base from the php7-fpm and piwik combined. So ended up using debian packages for just about everything.
FPM Port: 9000
Piwik files are extracted on first run to /var/www/html/piwik
Nginx configuration example:
server {
listen 443;
server_name mydomain.com;
index index.php;
root /var/www/html/;
location ~ ^/piwik/.*\.php$ {
include fastcgi.conf;
fastcgi_pass piwik-fpm:9000;
}
}
Content type
Image
Digest
Size
121.8 MB
Last updated
over 8 years ago
docker pull jpco/piwik