DockerHub Private Container Registry
Introduction
DockerHub subscription plans allow the user to have an unlimited number of private repositories.
In this article, we will use the TorizonCore Builder Tool to authenticate and pre-provide the target devices with a private container image hosted in DockerHub. This guide assumes you have followed the steps in the Private Registry Introduction and Prerequisites.
This guide offers a general guideline for further development and, therefore, should always be adapted to your specific use case.
In real-world scenarios, ensure you set up the appropriate access control, authentication and permissions.
Set up the DockerHub Cloud Environment
Please check Create and manage access tokens in DockerHub to find the set of permissions that better fits your specific application.
- Create a private registry: For more information, see DockerHub Manage repositories.
- Create the authentication token:
- One access token with full registry management permission for the host machine.
- Another with read-only permission for the deployed device (in this guide, we are using read-only permission).
Get the Authentication Tokens (Host Machine)
In this guide, we are going to use an access token. For other authentication methods, please refer to the complete official documentation Create and manage access tokens in DockerHub.
To save the credentials to be used by docker, run the
docker login
command.$ docker login --username <username> --password <token>
- The
<username>
is the account email or username. - The
<token>
is the access token.
- The
Push the Image to DockerHub Cloud. The
docker push
command should be working normally by default, using the host machine token. For more details, see the docker push documentation.
Push the DockerHub Docker Compose to Torizon Cloud Using TCB
It is a best practice to canonicalize the version of the docker-compose file before pushing it to Torizon OTA.
To use
torizoncore-builder platform push
with private repositories, we need to authenticate using the following flag:--login <username> <token>
- The
<username>
is the account email or username. - The
<token>
is the access token.
- The
Push the docker-compose file to Torizon Cloud. If you are missing the
<path-to-credentials.zip>
, please refer to the prerequisites.$ torizoncore-builder platform push \
--credentials <path-to-credentials.zip> \
--login <username> <token> \
--canonicalize \
<path-to-dockercompose.yml>
Get the Authentication Tokens (Deployed Device)
The authentication token from DockerHub is long-lived and there's no option to set an expiration date.
Run the following command to save the authentication token to
/etc/docker/config.json
.$ docker --config /etc/docker login --username <username> --password <token>
Copy the authentication file (
/etc/docker/config.json
) from the host machine to the target device and it should be ready to receive an update from the Torizon Cloud.This is going to enable this single device to receive an OTA update. Scaling is really simple with torizoncore-builder and Torizon Cloud, check the section on how to enable multiple devices.
For more information on setting up a container update, take a look at the overview article. If you want to learn more, see Torizon Cloud Web Interface.