Managing container images with Artifact Registry
This section includes several exercises that demonstrate how to use Artifact Registry to store and manage your containers:
- Create a repository to store images
- View role-based access control on the repository
- List the available repositories for a project
- Upload a container
- View container images
- Pull a container image or package
Creating an Artifact Registry repository to store your image
You can create an Artifact Registry repository using either the Google Cloud console or the command line. A repository is a centralized storage system for the software components and build outputs generated throughout the development process. It enables organized management, version control, and secure distribution of these artifacts. This example uses the command line to create a repository to store Docker images. In Chapter 5, we also worked with Docker images.
When you create an artifact repository, you’...