From a1c0c39ae9b20fd93dd3a25722d84ff7c24e5744 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Fri, 19 Mar 2021 16:02:03 +0100 Subject: [PATCH] Point to abra --- docs/package.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/package.md b/docs/package.md index c7e98de..cfe8143 100644 --- a/docs/package.md +++ b/docs/package.md @@ -19,7 +19,7 @@ $ wget https://raw.githubusercontent.com/matomo-org/docker/master/.examples/apac Open the `compose.yml` in your favourite editor and have a gander :swan: . There are a few things we're looking for -- full list to come -- but a few things we can immediately see are: 1. Let's bump the version to `3.8`, to make sure we can use all the latest swarm coolness -2. We load environment variables separately via `abra`, so we'll strip out `env_file`. +2. We load environment variables separately via [abra](/overview/#command-line-tool), so we'll strip out `env_file`. 3. The `/var/www/html` volume definition on L21 is a bit overzealous; it means a copy of Matomo will be stored separately per app instance, which is a waste of space in most cases. We'll narrow it down according to the documentation -- here, the developers have been nice enough to suggest `logs` and `config` volumes instead, which is a decent start 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.