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

  1. Download manifest.txt, which contains a list of the available images.
  2. Download each image listed in manifest.txt from the MATRIXX repository:
    docker pull matrixx_repository/image:version
  3. Use the docker tag command to define your repository:
    docker tag matrixx_repository/image:version my_repository/image:version
  4. Confirm the new image versions have been created correctly:
    docker images
  5. Push each image to your repository:
    docker push my_repository/image:version