cleanup repo

This commit is contained in:
L4RM4ND
2023-02-23 22:33:13 +01:00
parent 4e9a51c207
commit 153ba415ba
182 changed files with 84 additions and 84 deletions

View File

@@ -0,0 +1,3 @@
# References
- https://github.com/matomo-org/matomo

8
examples/matomo/db.env Normal file
View File

@@ -0,0 +1,8 @@
MYSQL_PASSWORD=makeitup2
MYSQL_DATABASE=matomo
MYSQL_USER=matomo
MATOMO_DATABASE_ADAPTER=mysql
MATOMO_DATABASE_TABLES_PREFIX=matomo_
MATOMO_DATABASE_USERNAME=matomo
MATOMO_DATABASE_PASSWORD=
MATOMO_DATABASE_DBNAME=matomo

View File

@@ -0,0 +1,41 @@
version: "2"
services:
matomo:
container_name: matomo
image: matomo
ports:
- 8099:80
volumes:
- /mnt/docker-volumes/matomo/apache/apache2.conf:/etc/apache2/apache2.conf:ro
- /mnt/docker-volumes/matomo/html:/var/www/html
environment:
- MATOMO_DATABASE_HOST=matomo_db
#- VIRTUAL_HOST=matomo.example.com
#- LETSENCRYPT_HOST=stats.mysite.ext
#- LETSENCRYPT_EMAIL=email@something.ext
env_file:
- ./db.env
depends_on:
- matomo_db
restart: unless-stopped
#labels:
# - traefik.enable=true
# - traefik.http.routers.matomo.rule=Host(`matomo.example.com`)
# - traefik.http.services.matomo.loadbalancer.server.port=80
# - traefik.docker.network=proxy
# # Part for local lan services only
# # - traefik.http.routers.matomo.middlewares=local-ipwhitelist@file
matomo_db:
container_name: matomo_db
image: mariadb
command: --max-allowed-packet=64MB
environment:
- MYSQL_ROOT_PASSWORD=makeitup
env_file:
- ./db.env
restart: unless-stopped
volumes:
- /mnt/docker-volumes/matomo/database:/var/lib/mysql