Files
podman/vendor/go.podman.io/common/libimage/manifests/copy.go
2025-09-01 12:33:04 +02:00

14 lines
332 B
Go

package manifests
import (
"go.podman.io/image/v5/signature"
)
// storageAllowedPolicyScopes overrides the policy for local storage
// to ensure that we can read images from it.
var storageAllowedPolicyScopes = signature.PolicyTransportScopes{
"": []signature.PolicyRequirement{
signature.NewPRInsecureAcceptAnything(),
},
}