We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://matomo.org/
docker-compose:
version: "2" services: mariadb: image: docker.io/bitnami/mariadb:10.3 environment: # ALLOW_EMPTY_PASSWORD is recommended only for development. - ALLOW_EMPTY_PASSWORD=yes - MARIADB_USER=bn_matomo - MARIADB_DATABASE=bitnami_matomo # Flag necessary for the database max allowed packet check # https://matomo.org/faq/troubleshooting/faq_183/ - MARIADB_EXTRA_FLAGS=--max_allowed_packet=64MB volumes: - "mariadb_data:/bitnami/mariadb" matomo: image: docker.io/bitnami/matomo:4 ports: - "80:8080" - "443:8443" environment: - MATOMO_DATABASE_HOST=mariadb - MATOMO_DATABASE_PORT_NUMBER=3306 - MATOMO_DATABASE_USER=bn_matomo - MATOMO_DATABASE_NAME=bitnami_matomo # ALLOW_EMPTY_PASSWORD is recommended only for development. - ALLOW_EMPTY_PASSWORD=yes volumes: - "matomo_data:/bitnami/matomo" depends_on: - mariadb volumes: mariadb_data: driver: local matomo_data: driver: local
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://matomo.org/
docker-compose:
The text was updated successfully, but these errors were encountered: