Docker
Registry

Private registry

This section will cover how to connect to a private registry and how to usre it.

Login to private registry

docker login reg.aio.sh

Tag image for Registry

Tagging an image is necessary to push it to the registry. You can tag an image using the following command:

docker tag <image:x.x.x> reg.aio.sh/<repo>/<image:x.x.x>

Push image to Registry

After tagging the image, you can push it to the registry using the following command:

docker push reg.aio.sh/<repo>/<image:x.x.x>