I have created image using spring builpack. By using doctl, uploaded the image in container repository
Now I would like to pull this image from container repository and run from docker in droplet.
docker pull registry.digitalocean.com/<my-registry>/<my-image>
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there,
You would need to authenticate first. You could use the following command:
Or if you prefer not to use the
doctl
command, you could login with an API token which you could generate via your DigktaOcean control panel. And then use it as the username and password by using the following command:For more information you could check out the following documentation:
https://www.digitalocean.com/docs/container-registry/how-to/use-registry-docker-kubernetes/#docker-integration
Hope that this helps. Regards, Bobby