A container registry that uses the AT Protocol for manifest storage and S3 for blob storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add oci manifest scope

+2 -1
+1 -1
go.mod
··· 19 19 github.com/ipld/go-car v0.6.1-0.20230509095817-92d28eb23ba4 20 20 github.com/klauspost/compress v1.18.0 21 21 github.com/mattn/go-sqlite3 v1.14.32 22 + github.com/multiformats/go-multihash v0.2.3 22 23 github.com/opencontainers/go-digest v1.0.0 23 24 github.com/spf13/cobra v1.8.0 24 25 github.com/whyrusleeping/cbor-gen v0.3.1 ··· 88 89 github.com/multiformats/go-base32 v0.1.0 // indirect 89 90 github.com/multiformats/go-base36 v0.2.0 // indirect 90 91 github.com/multiformats/go-multibase v0.2.0 // indirect 91 - github.com/multiformats/go-multihash v0.2.3 // indirect 92 92 github.com/multiformats/go-varint v0.0.7 // indirect 93 93 github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect 94 94 github.com/opencontainers/image-spec v1.1.0 // indirect
+1
pkg/auth/oauth/client.go
··· 129 129 func GetDefaultScopes() []string { 130 130 return []string{ 131 131 "atproto", 132 + "blob:application/vnd.oci.image.manifest.v1+json", 132 133 "blob:application/vnd.docker.distribution.manifest.v2+json", 133 134 fmt.Sprintf("repo:%s", atproto.ManifestCollection), 134 135 fmt.Sprintf("repo:%s", atproto.TagCollection),