Oracle Container Registry down ? or I am using wrong

Viewed 44

This week I tried to pull a container from https://container-registry.oracle.com/ . For that, I need to accept the oracle license linked to the container. But nothing appeared when I click on continue (screen below), screen of Oracle container registry:

enter image description here

If someone has a solution to pull images it will help a lot.

SOLVED : it's up right now

1 Answers

I see information at here https://container-registry.oracle.com/ords/f?p=113:4:8737763700079 . I am using Windows 11 pro x64. Inside CMD, I type command

docker pull container-registry.oracle.com/database/enterprise:latest

Error

Error response from daemon: Head "https://container-registry.oracle.com/v2/database/enterprise/manifests/latest": unauthorized: authentication required

How to authentication for Oracle docker registry?

docker login container-registry.oracle.com

Register an account at oracle.com . Username can copy & paste, password must type.

enter image description here

then pull

enter image description here

Reference document: https://docs.oracle.com/cd/E37670_01/E75728/html/oracle-registry-server.html

Related