Obtain and Host Images
Obtain the images, Helm chart, and utility scripts from MATRIXX, and host the images in an image repository so that they can be retrieved and instantiated as containers.
Procedure
-
Download
manifest.txt
, which contains a list of the available images. -
Download each image listed in
manifest.txt
from the MATRIXX repository:docker pull matrixx_repository/image:version
-
Use the
docker tag
command to define your repository:docker tag matrixx_repository/image:version my_repository/image:version
-
Confirm the new image versions have been created correctly:
docker images
-
Push each image to your repository:
docker push my_repository/image:version