refactored all to dev

This commit is contained in:
2025-11-26 21:48:53 -08:00
parent a8066686bc
commit f8ca733307
170 changed files with 12 additions and 29 deletions
+34
View File
@@ -0,0 +1,34 @@
################################################################################
# matomo
#
# Sample .env
#
# MATOMO_MYSQL_ROOT_PASSWORD=ChangeRootPass
# MATOMO_MYSQL_PASSWORD=ChangeThisPassword
# NETWORKNAME=admin_web
# DB_V=11.3.2
#
# Examples:
# https://github.com/matomo-org/docker/blob/master/.examples/apache/docker-compose.yml
################################################################################
services:
matomodb:
image: mariadb:${DB_V}
restart: always
volumes:
- ./data/matomodb:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: ${MATOMO_MYSQL_ROOT_PASSWORD:-12345678}
MYSQL_PASSWORD: ${MATOMO_MYSQL_PASSWORD:-987654321}
MYSQL_DATABASE: matomo
MYSQL_USER: matomo
# https://hub.docker.com/_/matomo/
matomo:
image: matomo:${MATOMO_V}
volumes:
- ./data/matomo:/var/www/html
- ./data/matomoconfig:/var/www/html/config
- ./data/matomologs:/var/www/html/logs
restart: always
+11
View File
@@ -0,0 +1,11 @@
# Domains & Project
PREFIX=p1
MATOMO_DOMAIN_NAME=matomo.nickyeoman.com
# Passwords
MATOMO_MYSQL_ROOT_PASSWORD=ChangeMe2ASecurepass!
MATOMO_MYSQL_PASSWORD=Again2ASecurepass!
# Software versions
DB_V=10.4.0
MATOMO_V=3.13.5-apache