Pulling Koios Image
  • 24 Sep 2024
  • 1 Minute to read
  • Dark
    Light

Pulling Koios Image

  • Dark
    Light

Article summary

Let’s get to the fun part, time to pull the Koios image down from our Azure Container Registry. The easiest way to do this is using the Azure CLI.

Azure CLI

To install the Azure CLI, follow the steps in the link below.

Azure CLI: https://learn.microsoft.com/en-us/cli/azure/install-azure-cli-linux?pivots=apt

Logging In

Once installed, you’ll need need to gain access to our Azure Container Registry using the following command:

az acr login --name koioscloud.azurecr.io --username koioscloud --password <password>

Password

Please contact Ai-OPs for a password to gain access to the repository at support@ai-op.com.

If successful, you will see Login Succeeded in the response.

Next, you’ll pull down the latest version using the following command:

docker pull koioscloud.azurecr.io/koios:latest

If you need to pull a specific version, replace latest with the version you would like.

Checking the Image

After the image has completed downloading, use  the docker image ls command to confirm you see the correct Koios version in your image list.

What’s Next?

Next, we will discuss how to run the image using a service file. It is very important you run the container correctly, failing to do so may result in loss of data or unknown behavior.