Should I self-host Matomo Cloud?
It is literally the same software. Matomo Cloud charges $26/mo to run the GPL code they publish; the apache image plus MariaDB is a one-evening setup and the data lands in your database instead of theirs.
Managed upgrades and their support SLA
Cloud-side raw data retention policies become your storage problem
web analytics · goals & funnels · visitor logs · GDPR-friendly tracking
* Percent of the subscription price. Your time is priced at the slider's rate — $0/h ("my homelab time is free and I love it") is a legitimate position. Every number is derived from the record, never hand-written. Price source, checked 2026-08-06.
Runs comfortably on a real VPS (2 GB+).



Boot to healthy measured at 39s on the 2GB reference env
# Matomo — the analytics standard; apache image + mariadb
services:
matomo:
image: matomo:apache
container_name: matomo
restart: unless-stopped
depends_on:
matomo-db:
condition: service_healthy
environment:
MATOMO_DATABASE_HOST: matomo-db
MATOMO_DATABASE_DBNAME: matomo
MATOMO_DATABASE_USERNAME: matomo
MATOMO_DATABASE_PASSWORD: matomo
ports:
- "8100:80"
volumes:
- matomo-data:/var/www/html
healthcheck:
test: ["CMD-SHELL", "php -r 'exit(@file_get_contents(\"http://localhost:80/\")!==false?0:1);'"]
interval: 10s
timeout: 10s
retries: 30
start_period: 30s
matomo-db:
image: mariadb:11
restart: unless-stopped
environment:
MARIADB_DATABASE: matomo
MARIADB_USER: matomo
MARIADB_PASSWORD: matomo
MARIADB_ROOT_PASSWORD: matomo-root
volumes:
- matomo-db:/var/lib/mysql
healthcheck:
test: ["CMD", "healthcheck.sh", "--connect", "--innodb_initialized"]
interval: 5s
timeout: 5s
retries: 12
volumes:
matomo-data:
matomo-db:
Want a guided install instead? caniselfhostit.com/matomo-cloud has AI-agent prompts that assume a bare machine — that's their half of the stool, and it's good.
FULL TIMED LOG
# Matomo Cloud — verdict log - **Date:** 2026-08-10 - **Verdict:** YES — worth it - **Protocol:** v1 (2GB reference env, Docker preinstalled, AI assistant: claude-code) ## Setup evidence - Compose: `compose/matomo-cloud-matomo.yml` - Boot to healthy: **39s** measured this session - Setup time recorded: 31 min (boot + configuration to first working workflow) ## What broke / notes - Boot to healthy measured at 39s on the 2GB reference env ## The call It is literally the same software. Matomo Cloud charges $26/mo to run the GPL code they publish; the apache image plus MariaDB is a one-evening setup and the data lands in your database instead of theirs.