Container Registry
Introduction
Container Registry is a service for storing private container images. It provides a subset of features provided by Artifact Registry, a universal repository manager and the recommended service for managing container images and other artifacts.
Artifact
Artifact Registry is a service for storing and managing artifacts in private repositories, including container images, Helm charts, and more.
It extends the capabilities of Container Registry with the following benefits:
- Support for multiple artifact formats.
- The ability to create multiple discrete repositories in the same region.
Working with your images
Many people use Docker Hub as a central registry for storing public Docker images, but to control access to your images you need to use a private registry such as Container Registry.
You can access the registry through secure HTTPS endpoints, which allow you to push, pull, and manage images from any system.
Manage Container Registry
Create New Container Registry
- Click on the "E2E Container Registry” sub-menu available under the Integrations section.
- Click on Create E2E Registry Button.
- You will be directed to the 'Create E2E Registry' page.
- Enter the Namespace.
- Enter the Username Prefix.
- Click on the Create button.


Connecting to your Container Registry
Enter the following command at a command prompt on your local or client desktop to connect to a container Registry.
docker login registry.e2enetworks.net -u <user_name> -p <password>
Push Commands
Using Docker
Enter the following command to push your image on the project.
Docker Images -
docker images
Create Tag - t
docker tag <image>:<tag> registry.e2enetworks.net/<project_name>/<image>:<tag>
Push Images -
docker push registry.e2enetworks.net/<project_name>/<image_name>:<tag>
Delete Artifact
To delete the artifact, click on the image name. Now, click on the delete icon next to the respective artifact. A confirmation popup will open, confirm it and click on Delete.


Delete Image
To delete an image, click on the image name you want to delete. Now, click on the Delete Image button. A confirmation popup will be open, confirm it and click on Delete.


Delete Container Registry
To delete a container registry, click on the Delete icon next to the respective container registry. A confirmation popup will be open, confirm it and click on Delete.

