mirror of
https://github.com/containers/podman.git
synced 2025-11-30 18:18:18 +08:00
14 lines
332 B
Go
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(),
|
|
},
|
|
}
|