rust-lang / docker-rust

The official Docker images for Rust
441 stars 90 forks source link

Cannot pull the version after v1.33 with content trust enabled in docker #42

Closed eugnma closed 5 years ago

eugnma commented 5 years ago

Below is the difference between v1.33 and v1.34:

$ docker trust inspect rust:1.33
[
    {
        "Name": "rust:1.33",
        "SignedTags": [
            {
                "SignedTag": "1.33",
                "Digest": "ee53576304aa1d5c7ed86b82683c89b716b90efd564fff7ea2c08dc72b808d33",
                "Signers": [
                    "Repo Admin"
                ]
            }
        ],
        "Signers": [],
        "AdministrativeKeys": [
            {
                "Name": "Root",
                "Keys": [
                    {
                        "ID": "395e07cae0e2ea2edf4feeeaacb0487163c82e450db04ee89b0a766c513b1644"
                    }
                ]
            },
            {
                "Name": "Repository",
                "Keys": [
                    {
                        "ID": "08eb187de7ae531eafac4a1ae771fa88fc7a53b0b9b6c01b1b3c553290ce90fd"
                    }
                ]
            }
        ]
    }
]
$ docker trust inspect rust:1.34
[
    {
        "Name": "rust:1.34",
        "SignedTags": [],
        "Signers": [],
        "AdministrativeKeys": [
            {
                "Name": "Root",
                "Keys": [
                    {
                        "ID": "395e07cae0e2ea2edf4feeeaacb0487163c82e450db04ee89b0a766c513b1644"
                    }
                ]
            },
            {
                "Name": "Repository",
                "Keys": [
                    {
                        "ID": "08eb187de7ae531eafac4a1ae771fa88fc7a53b0b9b6c01b1b3c553290ce90fd"
                    }
                ]
            }
        ]
    }
]
sfackler commented 5 years ago

Weird! The images are built and published by Docker's official-images infrastructure, so I think you'd need to ask them about this: https://github.com/docker-library/official-images

eugnma commented 5 years ago

Thanks for the information, I think it's related to docker-library/official-images#5874

sfackler commented 5 years ago

Cool, let's close this in favor of that then.