Push a Docker image to Container Registry
-
Assign a tag to the image:
docker tag <image> cr.selcloud.ru/<registry>/<image>:<tag>Specify:
<image>— image name that does not exceed 20 UTF-8 characters. You can view it using thedocker image list;<registry>— the name of the registry where you want to push the image;<tag>— the tag.
-
Push the image into the registry:
docker push cr.selcloud.ru/<registry>/<image>:<tag>