skip to Main Content

For some technical and organizational reasons, I cannot use our Artifactory as Registry by using docker push or CI/CD pushes.

As it seems, JFrog’s Artifactory provides a feature to manually deploy artifacts, by directly uploading files. Now, how do I do that with a Docker image I built locally on a machine? I only found explanations about JAR Files.

2

Answers


  1. I am not 100% sure, but you can try to save your image to a file and upload it via UI.

    docker save imagename > imagename.tar
    
    Login or Signup to reply.
  2. You can save the docker image using the following command:

    docker save <Docker_Image_ID> > <name>.tar.gz 
    

    Then untar the tar.gz file and deploy the content of the directory via
    JFrog CLI.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search