How to docker pull to a specific server?

594 Views Asked by At

I recently developed a Jenkins pipeline that does build and push for multiple projects. Now, I need to pull the built images to a specific server. As in, suppose Server 'A' is my build server and server 'B' is where I need to pull the build images to. I know I can go to Server B and execute docker pull from Docker hub. But is there a way I can automate this process of pulling the built images to a specific server in the same Jenkins Pipeline? or is there any feasible way to achieve this?

1

There are 1 best solutions below

1
On

You can include below commands on Jenkins pipeline steps section to run docker pull on remote server.

     docker.withServer('tcp://<B Server>:2375', '') {                                                    

             dockerImage.pull("<Image Name>")

     }