Report this

What is the reason for this report?

How can a CICD system pull an image form a digitaloncean registry?

Posted on May 19, 2020

Can a system without doctl pull an image from a DO registry? If so what is used for the username / password combination? I ask because I’d like to pull using bitbucket pipelines. Thx.



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

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.

The doctl integration is just a convenience. You can login to the registry without it. To do so, use a DigitalOcean API token for both the username and password:

docker login -u $DO_TOKEN -p $DO_TOKEN registry.digitalocean.com

Additionally, you can retrieve a .docker/config.json file that you can use with Docker using the API directly:

curl -X GET -H "Content-Type: application/json" \
  -H "Authorization: Bearer $DO_TOKEN" \
  "https://api.digitalocean.com/v2/registry/docker-credentials 

See: https://developers.digitalocean.com/documentation/v2/#get-docker-credentials-for-container-registry

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.