-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f90284f
commit 4383c0b
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Upgrading Matomo | ||
|
||
In order to upgrade Matomo, follow these steps: | ||
|
||
- Change the version in the Ansible config like this: https://github.com/stadtnavi/digitransit-ansible/commit/f5d3b6cdc6d9cbab9025758994b7f050ef3cd3a2 | ||
- Provision the server with `make dev` or `make prod` | ||
- Then log into Matomo and migrate in the UI | ||
- This will attempt a database migration but this may time out. That's not particularly bad. Just follow the next step. | ||
- Make sure that the database is migrated with the following commands: | ||
``` | ||
docker exec -it matomo_app_1 /bin/sh | ||
php /var/www/html/console core:update | ||
``` |