Jitsi Docker-compose pull new version (:latest) FAILS

Hello everyone,
first i have to thank you everyone for the great job, you are doing here with this incredible software.

I have working docker installation of jitsi meet (centos7, docker). But now i can not upgrade jitsi doing: docker-compose pull.
Docker-compose pull worked perfectly for two years. I did not changed anything recently in docker-compose.yml (and I have “:latest” flag like so: “image: jitsi/web:latest”). I have upgraded it last time around 4 months ago, and it worked perfectly.

But now, when I run “docker-compose pull” I just get those errors:

Pulling web … trying to pull repository docker…
Pulling prosody … trying to pull repository docker…
Pulling jicofo … trying to pull repository docker…
Pulling jvb … trying to pull repository docker…
ERROR: for web manifest for docker.io/jitsi/web:latest not found
ERROR: manifest for docker.io/jitsi/web:latest not found

Has anything changed recently (or should I change something in my docker-compose.yml), that would make “:latest” pull attempt to fail?

Thank you very much.

latest has been deprecated for a long time and I finally pulled the plug. Please use a release.

@saghul I am facing this issue as well with the latest release, we use “build: ./web” instead of using the release image because of some customizations we would like to make but get the following error now. It works when we use the release images but can’t make any changes to them. Looks like the reference in the dockerfiles still uses latest and needs to be changed

Changing “ARG BASE_TAG=latest” to “ARG BASE_TAG=stable” fixed the issue for me

BASE_TAG is set when building, the Makefile does it.

1 Like