1.0 Introduction
This article describes how to configure image registries in Fortanix Confidential Computing Manager (CCM). Configuring registries allows users to securely store and access container images required for deploying containerized applications.
2.0 Configure Multiple Docker Registries
Fortanix CCM allows users to add and manage multiple Docker registries from the Applications page.
Perform the following steps to add multiple docker registries:
In the CCM user interface (UI) left navigation panel, click Applications → REGISTERIES, and then click ADD REGISTRY.

Figure 1: Add registry
Registry credentials are used to authenticate access to the private Docker registry from which container images are pulled or pushed.
In the Add Registry form:
Registry Name: The name of the Docker registry. The credentials will be used for every image with the same prefix. For example, docker.io.
Credentials and Password: The username and password used to authenticate with the private Docker registry.
Click ADD REGISTRY to add the docker registry credentials.
Once the registry credentials are saved, users are not required to enter the Docker registry credentials again while creating an application image.
The newly added registry credentials appear in the REGISTRIES table.
3.0 Configure Multiple Azure Container Registries
In some environments where the Docker daemon is not running, Azure Container Registry authentication can be performed using the az acr login command in Azure CLI.
For example, you might need to run az acr login in a script in Azure Cloud Shell, which provides the Docker CLI but does not run the Docker daemon.
For such scenario:
Run
az acrlogin first with the--expose-tokenparameter.Run the
az acrlogin command with the--expose-tokenparameter. This option exposes an access token instead of logging in through the Docker CLI.Azure CLI:
az acr login -name <acrName> --expose-tokenThe output displays the access token, abbreviated here:
{ “accessToken”: “eyjhbGci0iJSUzI1NiIs[...]24V7wA”, “loginServer”: “myregistry.azurecr.io” }Then, run docker login, using
00000000-0000-0000-0000-000000000000as the username and the access token as the password:Docker login myregistry.azurecr.io --username 00000000-0000-0000-0000-000000000000 --password eyjhbGci0iJSUzI1NiIs[...]24V7wAUse
00000000-0000-0000-0000-000000000000as the username and the access token as the password while configuring the registry in Fortanix CCM.
Figure 2: Configure registry credentials
When creating an application build in Fortanix CCM, users can use the Azure registry credentials saved in the Fortanix CCM Settings page.