Report this

What is the reason for this report?

Unable to push to registry

Posted on May 25, 2023

hi, i could successfully do doctl registry login, i could also tag successfully, but still i got this error when i tried to push: unauthorized: authentication required



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.
0

Hi there,

It sounds like that you might not be using the correct tag naming convention. You need to make sure that the tag follows this convention:

registry.digitalocean.com/<my-registry>/<my-image>

Here is a quick overview on how to do this:

  1. Use the registry login command to authenticate Docker with your registry:

    doctl registry login
    

    Copy

  2. Use the docker tag command to tag your image with the fully qualified destination path:

    docker tag <my-image> registry.digitalocean.com/<my-registry>/<my-image>
    

    Copy

  3. Use the docker push command to upload your image:

    docker push registry.digitalocean.com/<my-registry>/<my-image>
    

Let me know how it goes!

Best,

Bobby

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.