docker-library / php

Docker Official Image packaging for PHP
https://php.net
MIT License
3.84k stars 2k forks source link

missing signature key on php:5.4-apache #1546

Closed CyberPoison closed 1 week ago

CyberPoison commented 2 weeks ago

Hi, i'm facing a weird issues with my CI-CD recently, when i do a FROM or a git pull of the image:

docker pull php:5.4-apache

I got:

Error response from daemon: missing signature key

I also tryed to disable trust with

export DOCKER_CONTENT_TRUST=0

But i didn't get away from the issue and i wasn't able to bypass this.

LaurentGoderre commented 1 week ago

Try pulling again. The missing signature key has a fix in place now.

tianon commented 1 week ago

As noted by Laurent, there's now a fix in place in Docker Hub for the original pulling issue (schema1 images should pull successfully again in tools which support them).

If you have a tool which does not support them and you still need to work with them, I have written https://github.com/tianon/oci-schema1 to help perform the conversion without any runtime support (bash + jq + a little crane).

CyberPoison commented 1 week ago

thanks @tianon got pulled the image and them pushed back to a other public repo, https://hub.docker.com/r/cyberpoison/php

So now is fully compatible with new manifests :) 🚀