Container registry
evroc provides a container registry to support the Run service. The registry server is <registry.prod.evroclabs.net>.
Login
Login with the same credentials provided for evroc CLI usage.
Note: you will need to login via the cli first to setup your account.
$ docker login registry.prod.evroclabs.net -u jbloggs@example.com
Password: XXXXXXXXXXXXXXXXXX
Login Succeeded
Config written
Logout
docker logout registry.prod.evroclabs.net
Push
Tag an image local to you
docker tag my-image:my-tag registry.prod.evroclabs.net/my-org/my-image:my-tag
Push to the evroc registry
docker push registry.prod.evroclabs.net/my-org/my-image:my-tag
You should now be able to use the image within an evroc run serverless service.
Note: a user is only allowed to push/pull an image named
my-org/my-image:my-tagifmy-orgis the name of the user's organization.