docker icon indicating copy to clipboard operation
docker copied to clipboard

Version 5.0.1 not updated after docker pull

Open vandman opened this issue 2 years ago • 3 comments

Hi, I have been using Matomo for a while now. I pull the latest image from docker hub and the upgrade did not work or was not done?

look at the website message: image

In my docker compose file, i specified the version just to be sure:

version: '3'

services:
  matomo:
    image: matomo:5.0.1
    container_name: matomo
    restart: unless-stopped
    volumes:
      - matomo_www:/var/www/html
      - $PWD/config:/var/www/html/config
      # Use MaxMind GeoLite2 databases:
      - /var/lib/GeoIP/:/var/www/html/misc/
    environment:
      - MATOMO_DATABASE_HOST=matomo-mariadb
      - MATOMO_DATABASE_ADAPTER=mysql
      - MATOMO_DATABASE_TABLES_PREFIX=matomo_
      - MATOMO_DATABASE_USERNAME=${MYSQL_USER}
      - MATOMO_DATABASE_PASSWORD=${MYSQL_PASSWORD}
      - MATOMO_DATABASE_DBNAME=${MYSQL_DATABASE}
      - TOKEN_AUTH=${TOKEN_AUTH}
    healthcheck:
      test: curl http://localhost/index.php?module=API&method=API.getMatomoVersion&token_auth=${TOKEN_AUTH}

docker image ls | grep matomo
matomo                       5.0.1               3354df586779   5 days ago       583MB
matomo                       latest              3354df586779   5 days ago       583MB
``

Am I missing something or is it a bug?

Regards,
Pierre NIKOLOV

vandman avatar Jan 12 '24 01:01 vandman

I think this might be due to you not running through the upgrade process in the admin pages. The matomo source that's built into the container (in /usr/src/matomo) is copied to the mounted volume (/var/www/html) on startup of the container but only if the matomo source is not already present in that volume. So, even if you're running the 5.0.1 image, if there was already a version of matomo in the volume, let's say v4, then it will be v4 that will actually be served/running until the update process is run.

alewis001 avatar Jan 19 '24 10:01 alewis001