We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When trying to pull library/fedora with the following config
library/fedora
git_repository( name = "io_bazel_rules_docker", remote = "https://github.com/bazelbuild/rules_docker.git", tag = "v0.4.0", ) load( "@io_bazel_rules_docker//container:container.bzl", "container_pull", "container_image", container_repositories = "repositories", ) container_repositories() container_pull( name = "fedora", registry = "index.docker.io", repository = "library/fedora", digest = "sha256:25f7dac76b2c88d8b7e0b1d6213d3406e77c7f230bfa1e66bd1cbb81a944eaaf", #tag = "27", )
I get
no such package '@fedora//image': Pull command failed: F0215 23:08:04.033210 8081 __main__.py:107] Error pulling and saving image index.docker.io/library/fedora@sha256:e850707632271c4e9bff8eeda1ff0272819d9c4fde17f436ec926291026b9160: 'signatures'
However, pulling via tag = 27 works and pulls this layer, and directly running
tag = 27
docker pull index.docker.io/library/fedora@sha256:e850707632271c4e9bff8eeda1ff0272819d9c4fde17f436ec92629
works fine too ...
The text was updated successfully, but these errors were encountered:
Ok, duplicate of #320 and #308.
Sorry, something went wrong.
This should be fixed at HEAD
No branches or pull requests
When trying to pull
library/fedora
with the following configI get
However, pulling via
tag = 27
works and pulls this layer, and directly runningworks fine too ...
The text was updated successfully, but these errors were encountered: