From 79fe28bbcc1b03fc3fb6c72f053ca61d1839193a Mon Sep 17 00:00:00 2001 From: decentral1se Date: Fri, 19 Mar 2021 16:02:07 +0100 Subject: [PATCH] Drop this line since we need app/db naming now --- docs/package.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/package.md b/docs/package.md index cfe81434..44d40a9d 100644 --- a/docs/package.md +++ b/docs/package.md @@ -24,7 +24,6 @@ Open the `compose.yml` in your favourite editor and have a gander :swan: . There 4. The MySQL passwords are sent as variables which is fine for basic use, but if we replace them with Docker secrets we can keep them out of our env files if we want to publish those more widely. 5. The MariaDB service doesn't need to be exposed to the internet, so we can define an `internal` network for it to communicate with Matomo. 6. Lastly, we want to use `deploy.labels` and remove the `ports:` definition, to tell Traefik to forward requests to Matomo based on hostname and generate an SSL certificate. -7. I'll also rename the `db` and `app` services to `mariadb` and `matomo` respectively, for consistency with our other apps. The resulting `compose.yml` is available [here](https://git.autonomic.zone/coop-cloud/matomo/src/branch/main/compose.yml).