Use Docker Client with Artifactory Cloud

JFrog Artifactory Documentation

Products
JFrog Artifactory
Content Type
User Guide
ft:sourceType
Paligo

To use the Docker client with one of your Artifactory Cloud Docker repositories, you can use the native Docker client to login to each Docker repository, pull, and push images.

  • Log in to your repository use the following command with your Artifactory Cloud credentials.

    docker login ${server-name}.jfrog.io
  • Pull an image using the following command.

    docker pull ${server-name}.jfrog.io/{repo-name}/<image name>
  • Push an image by first tagging it and then using the push command.

    docker tag <image name> ${server-name}.jfrog.io/{repo-name}/<image name>
    docker push ${server-name}.jfrog.io/{repo-name}/<image name>