Home > Net >  Manual upload of a Docker image to Artifactory
Manual upload of a Docker image to Artifactory

Time:10-27

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.

CodePudding user response:

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

CodePudding user response:

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.

  • Related