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.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
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:
Here is a quick overview on how to do this:
Use the
registry login
command to authenticate Docker with your registry:Copy
Use the
docker tag
command to tag your image with the fully qualified destination path:Copy
Use the
docker push
command to upload your image:Let me know how it goes!
Best,
Bobby