当前位置: 移动技术网 > IT编程>数据库>Mysql > docker 搭建matomo

docker 搭建matomo

2020年07月09日  | 移动技术网IT编程  | 我要评论

创建数据库:

docker run -d --restart=always -p 30201:3306 -v /soft/mysql/my.cnf:/etc/mysql/mysql.conf.d/mysqld.cnf -v /soft/mysql/data:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=root --name mysql mysql:5.7.22 --lower_case_table_names=1

创建matomo

docker run --restart=always -d --name matomo -p 30202:8000 -v /opt/matomo/data:/data crazymax/matomo

参考:
https://www.daniao.org/7523.html
https://www.cnblogs.com/suntrain/p/6689473.html
https://www.cnblogs.com/woods1815/p/11179696.html

1、Matomo数据库结构
http://www.matomo.net.cn/matomo-piwik-database-schema-pdf/

2、官网数据库结构文档
https://developer.matomo.org/guides/database-schema

3、matomo架构
http://www.matomo.net.cn/2018/12/matomo-how-to-work/

本文地址:https://blog.csdn.net/weixin_37924923/article/details/107134610

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网