dockerhub - How can I pull a Docker image from a private Docker Hub repo remotely? -
i have several images in docker hub private repositories, , need pull these on remote machines using docker remote rest api. there way of authenticating remotely?
these calls i'd make remotely:
docker login docker pull myrepo/myimage
yes there way, need specify remote host
docker login myrepo.com
then can access images
docker pull myrepo.com/myimage
and can specify tag well
docker pull myrepo.com/myimage:mytag
hope works you.
Comments
Post a Comment