Scontain Image Registry
Since we ran into rate limitation issues with Docker hub, we needed to move to a new container image registry: registry.scontain.com:5050
. You can register a free account at https://gitlab.scontain.com/users/sign_up (see also below).
Existing Docker Hub Subscribers
We want to simplify this move as much as possible for existing subscribers of our images on Docker hub. Hence, we created a login for you using:
- the email address from which you sent your original request, and
- the docker hub ID that you provided us with as the
username
.
We also created a personal access token to pull from the registry and sent this to you via email.
You can now login to via
docker login registry.scontain.com:5050
and provide
- your docker hub ID as
username
, and - the
token
as password
You can now pull images as follows:
Instead of using the name
sconecuratedimages/crosscompilers:alpine
or
docker.io/sconecuratedimages/crosscompilers:alpine
use the new name
registry.scontain.com:5050/sconecuratedimages/crosscompilers:alpine
You can now pull images as follows:
docker pull registry.scontain.com:5050/sconecuratedimages/crosscompilers:alpine
Password Reset
To reset your password, please visit https://gitlab.scontain.com/users/password/new
If you do not remember your email address or your login: You should have gotten an email regarding this and, you need to reset the password because you are given a random password.
You should have the same access rights as previously. If not, please let us know.
For new users: Please register a new account
Please register a free account at https://gitlab.scontain.com/users/sign_up.
You need to confirm your email and, we will grant you access to the community edition.
Create an access token
After you registered an account, you can create an access token for docker login
as follows:
You can create a https://gitlab.scontain.com/-/profile/personal_access_tokens by
- selecting a name of the token, e.g.,
registry_token
- selecting scope
read_registry
and then - pressing button
create personal access token
.
Copy your new access token.
For more information, please read this gitlab docu
docker login
You can log into the registry as follows:
docker login registry.scontain.com:5050
using your
- your ID as
username
, and - your access token as password.
docker pull
When you execute a docker pull
, you now need to specify the registry registry.scontain.com:5050
in each pull request.
Instead of pulling the image sconecuratedimages/crosscompilers:alpine
like this:
docker pull sconecuratedimages/crosscompilers:alpine
you now need to pull this image like this:
docker pull registry.scontain.com:5050/sconecuratedimages/crosscompilers:alpine