X509: certificate is not valid for any names

J’avais un xibo 1.8.2 qui fonctionnait très bien.
J’ai voulu passer à xibo 1.8.10

j’ai télécharger l’archive , mais que je lance la commande
docker-compose up -d
j’obtiens une erreur de certificat (voir ci-dessous)

Que faire ?

Pour info, j’utilise une debian à jour
Linux 4.9.0-6-amd64 #1 SMP Debian 4.9.88-1+deb9u1 (2018-05-07) x86_64 GNU/Linux


When I try to update xibo from 1.8.2 to 1.8.10, I have an error.

Pulling cms-web (xibosignage/xibo-cms:release-1.8.10)…
ERROR: Get https://registry-1.docker.io/v2/: x509: certificate is not valid for any names, but wanted to match registry-1.docker.io

I am using a
Linux 4.9.0-6-amd64 #1 SMP Debian 4.9.88-1+deb9u1 (2018-05-07) x86_64 GNU/Linux

I have find the solution.
The problem come with the proxy.
It seems docker can’t go threw a https proxy.

So in fact the only solution is to put the computer on an other network without proxy just for the update…

You can do it that way, or you can use an out of band transfer for the images:

Run the following on an internet connected computer

docker pull xibosignage/xibo-xmr:release-0.7
docker pull xibosignage/xibo-cms:release-1.8.10
docker pull mysql:5.6
docker save xibosignage/xibo-xmr:release-0.7 > xmr.tar.gz
docker save xibosignage/xibo-cms:release-1.8.10 > cms.tar.gz
docker save mysql:5.6 > mysql.tar.gz

Then transfer the three tar.gz files to your server, and run

docker load -i xmr.tar.gz
docker load -i cms.tar.gz
docker load -i mysql.tar.gz

Thne you can up the containers in the normal way, and the images will be pre-downloaded for you.