All about OCIR (Oracle Cloud Infrastructure Registry) in OCI

Share on:

What is OCIR:

Oracle Cloud Infrastructure Registry, or a container registry, is an Oracle-managed registry that enables you to simplify your development to production workflow.

OCIR is best used to store Docker images you will utilize in Containerized Applications, such as those that you deploy with Container Engine for Kubernetes.

In this blog, post I will show you 

1. How to create an OCIR Repository
2. How to push docker Image to OCIR Repository
3. How to pull Images from OCIR Repository

ocir

 

1. How to Create the repository in OCIR

Go to OCI Menu –> Developer Services –> Container & Artifacts –> Container Registry

ocir2

 

Click on Create Repository, give it a name, and click on Create

ocir3

 

It will create a private repository (You can also create a public)

ocir4

 

2. How to Push Docker Image to OCIR repository:

To push an image first we have to generate an Auth token, Generate Auth token

Click on the profile menu –> user settings –> Click on Auth Tokens

Click on Generate Token –> Give any description and click on Generate token

ocir5

 

You will see the screen below

ocir6

 

Copy and save this token somewhere.

 

Now to push the docker image to the OCIR repository, we need a docker environment.

Either you can use docker from your machine if OCI setup is there or else the easiest way is to use OCI Cloud Shell, OCI cloud shell already have docker installed.

Click on developer tool –> Cloud shell 

ocir7

 

And I will log in to the container registry using the docker login command

docker login <region_key>.ocir.io

Where,

<region-key> is the key for your Oracle Cloud Infrastructure Registry region. For example, YYZ is the region key for Canada Southeast (Toronto) region.

See the Availability by Region topic in the Oracle Cloud Infrastructure documentation.

username = tenancy-namespace/your username

password = Auth token we generated above

ocir8

 

Now time to push my local image into the container registry, first check what local images present in this machine. To push the local image to the container registry I need to Tag the source image first

ocir9

 

here is the above tag command we have to give the full path of the container target repository where we want to push the image

i.e. <region-key>/tenancy namespace>/OCIR Repository Name

Now check if a new image was created with a new tag and then push the image into the container registry

ocir10

 

Now check the console for the OCIR Registry if we have this image present there.

ocir11

 

Above you can see we have a new image in our container registry now, to see more details about the image, Click on Repository and Images and click on V1

ocir12

 

3. Now how to pull the image from the container registry

Before pulling the image, let me delete all my local images

ocir13

 

Now let’s pull the same image from the container registry to my local machine

To pull the image copy the pull command from the container registry console

ocir14

 

Then use that pull command to pull the image to a local repository.

ocir15

Share on:

More from this Author

oac

How to Import Custom Visualization in Oracle Analytics Cloud to See Images

In this blog, I will show you how to download and import the Image Gallery Plugin into OCI Oracle Analytics Cloud. using this plugin we can see ... Read More

Oracle 23c INTERVAL Data Type Aggregations

Analyze Invoices with Oracle Analytics and AI Document Understanding

OCI Document Understanding is an AI service that enables developers to extract text, tables, and other key data from document files through APIs and ... Read More

Back to Top