Question

How to docker push to DigitalOcean private container registry for a Remote User

I have successfully setup the private Docker registry with authentication. However this authentication is only for docker pull command. Doing a docker push command gives me

denied: requested access to the resource is denied
unauthorized: authentication required

I understand the concept of doctl registry login and pushing from my end as admin user. How can i do the same for a remote user without giving the remote user read and write API access token from DO control panel.

by generating and sharing doctl registry docker-config ( from my end) he was able to pull from the DO private registry but push failed with the above msg


Submit an answer


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!

Sign In or Sign Up to Answer

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.

Accepted Answer

Docker Registry is an application that manages storing and delivering Docker container images. Docker images guarantee consistent runtime environment through virtualization, but building an image can take time— registries centralize container images and reduce build times.In this tutorial, you’ll set up and secure your own private Docker Registry using Docker Compose and Nginx. Then, you’ll be able to push custom Docker images to your private registry and pull the image securely from a remote server. Choose your operating system to get started.

Bobby Iliev
Site Moderator
Site Moderator badge
October 5, 2020

Hi there @favas,

I believe that you need to make sure that your image is tagged with fully qualified destination path:

docker tag your_image registry.digitalocean.com/your_registry/your_image

After that, when pushing the image again you need to use the following syntax:

docker push registry.digitalocean.com/your_registry/your_image

Let me know how it goes! Regards, Bobby

Become a contributor for community

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

DigitalOcean Documentation

Full documentation for every DigitalOcean product.

Resources for startups and SMBs

The Wave has everything you need to know about building a business, from raising funding to marketing your product.

Get our newsletter

Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.

New accounts only. By submitting your email you agree to our Privacy Policy

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.