Overview

Along with the steps described under Docker Credential Helper, follow the steps specific to the enterprise edition below.

Configuring Docker

Enterprise Only

Configure Docker by running:

fioctl configure-docker

Enterprise and Foundries.io Instances

Create the alias fioctl-enterprise then run:

fioctl-enterprise configure-docker

Validating Your Configuration

  1. Check the Docker configuration:

You should find the configuration setup for your Enterprise edition:

cat $HOME/.docker/config.json
{
  ...
  "credHelpers": {
    "hub.qcom.foundries.io": "fio",
    ...
  },
 ...
}
  1. Pull an image from your hub (https://hub-ui.qcom.foundries.io/factories/<factory>):

Enterprise Only

Run:

docker pull <image>

Enterprise and Foundries.io Instances

FIOCTL_CONFIG=$HOME/.config/fioctl-enterprise.yaml \
  docker pull hub.qcom.foundries.io/<factory>/<image>:<tag>