Hi, I have a self-hosted metabase instance, which version is 0.50.28, in docker-compose.yml it uses image tag "metabase/metabase:latest", but I noticed that 0.50.30 had been released a few days ago, however the metabase image with latest tag still not be updated, could anyone tell me that is there anything changed with the release date of the latest tag of docker image? Should I use a specific version tag?
Please read about mutable and immutable tags in containers. You’re using a mutable tag, which means that you’re running the latest image at the time it was pulled and now it’s cached locally. Never ever ever use mutable tags in production, it’s against best practices and you’ll believe you’re using the latest image when you’re not
Thanks, but I tried "docker-compose pull", it didn't changed. Because the latest tag on docker hub hasn't been updated for 18 days:
I copied configuration from official document, it usually works in the past to run "docker-compose pull && docker-compose up -d", like every one week or two weeks to keep metabase updated. But now the latest tag on docker hub stopped updating, trying to figure out what happened to the "latest" tag.
yup, you're right, I just pinged the team about that. Either way, please don't use mutable tags
Thanks for your help, I will update the image tag~