matomo-org/docker

docker: use tags

alexislefebvre opened this issue · 0 comments

In the examples, the Docker images don't specify a version:

If mariadb publish a new release that break backward compatibility (e.g. a new major release), people may have issues when pulling new versions.

I suggest to specify tags like this:

services:
  db:
    image: mariadb:10.7
    # …

  app:
    image: matomo:4.5-apache

So that users will have to update these numbers to get new major releases of these images.