# Share Vercel Container Registry repositories across teams

DevFeed: [Share Vercel Container Registry repositories across teams](<https://devfeed.tech/articles/share-vercel-container-registry-repositories-across-teams-1095.md>)

Original publisher: [Read original article](<https://vercel.com/changelog/share-vercel-container-registry-repositories-across-teams>)

Author: Andy Waller

Published: 2026-08-03T00:00:00Z

Content type: release

Language: en

Sources: [Vercel News](<https://devfeed.tech/sources/vercel-news.md>)

Topics: [Vercel](<https://devfeed.tech/topics/vercel.md>), [Command-line interface](<https://devfeed.tech/topics/cli.md>), [Authorization](<https://devfeed.tech/topics/authorization.md>)

Tags: [cli](<https://devfeed.tech/tags/cli.md>), [container-registry](<https://devfeed.tech/tags/container-registry.md>), [images](<https://devfeed.tech/tags/images.md>), [npm](<https://devfeed.tech/tags/npm.md>), [registry](<https://devfeed.tech/tags/registry.md>), [vercel](<https://devfeed.tech/tags/vercel.md>)

## AI overview

Vercel Container Registry now supports sharing repositories across Vercel teams with read-only access to all images. Recipients can pull and use images but cannot push, delete, or re-share them.

## Source excerpt

Vercel Container Registry now lets you share a repository with other Vercel teams to grant read access to its images. Sharing is read-only and covers the whole repository. Recipients can pull and use every image, but cannot push, delete, or re-share. You can also share a repository with your own team. Each repository can be shared with up to 100 teams. Share from the project dashboard under Images -> repository -> Settings -> Repository Sharing, or with the Vercel CLI: # Share a repository with a team vercel vcr permissions my-repository add other-team # List teams with access vercel vcr permissions my-repository ls # Revoke a team's access vercel vcr permissions my-repository rm other-team # Remove all shared access vercel vcr permissions my-repository clear Shared images can be used in Vercel Sandbox, accepting a team-scoped image reference in Sandbox.create() : import { Sandbox } from '@vercel/sandbox'; const sandbox = await Sandbox.create({ image: 'other-team/their-project/shared-repository:latest', }); Repository sharing is available on all plans. Update the Vercel CLI to v58.3.0 or later with npm i -g vercel@latest to get started and see the Vercel Container Registry documentation to learn more. Read more