Getting Started with Docker

To begin using the Docker Registry software, click on "Install Software."

App Install: docker-install

To proceed, select the name (slug) of the Docker Registry and the desired plan.

App Install: docker-spec

You are now on the overview page.

This page includes codes and links for connecting to the registry, your storage usage, and information about your current plan and its features.

App Install: docker-overview

Connecting to Docker

There are several methods to connect to a Docker Registry. Here, we will connect using docker-cli.

First, navigate to the overview page:

  1. Address: Copy the registry address from this field.
  2. FULL_ACCESS: From this section, obtain the username and token for full access connection.
  3. READ_ONLY: From this section, you can grant limited access to users.

Enter the following command in the terminal (you can also use the Docker Desktop terminal):

echo "YOUR_PASSWORD" | docker login YOUR_REGISTRY_ADDRESS --username YOUR_USERNAME --password-stdin

Or:

docker login YOUR_REGISTRY_ADDRESS -u YOUR_USERNAME -p YOUR_PASSWORD

App Install: docker-cli-login

After a successful connection, you can push and pull from your registry.