1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-20 04:59:25 +02:00
This commit is contained in:
kev 2015-07-17 19:17:24 +08:00
parent 7e6bb8263d
commit b8548c2f00
2 changed files with 32 additions and 4 deletions

View File

@ -5,5 +5,24 @@ piwik
full control over your data. Piwik lets you easily collect data from websites,
apps & IoT and visualise this data and extract insights. Privacy is built-in.
## docker-compose.yml
```
dokuwiki:
image: vimagick/piwik
ports:
- "8000:80"
links:
- mysql
restart: always
mysql:
image: mysql
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=piwik
restart: always
```
[1]: http://piwik.org/

View File

@ -1,5 +1,14 @@
dokuwiki:
image: vimagick/piwik
ports:
- "8000:80"
restart: always
image: vimagick/piwik
ports:
- "8000:80"
links:
- mysql
restart: always
mysql:
image: mysql
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=piwik
restart: always