Offline Installation
Configure the registry
Obtain the Docker images
Upload the Docker images
cd '<IMAGES_ARCHIVE_LOCATION>'
docker image load -i images.tar.gzREGISTRY='<REGISTRY_URL>'
for image in `docker images | awk '/485790562880.dkr.ecr.us-east-2.amazonaws.com/ {print $1 ":" $2}'`; do
newImage="${image/485790562880.dkr.ecr.us-east-2.amazonaws.com/${REGISTRY}}"
docker tag ${image} ${newImage}
docker push ${newImage}
doneCreate the configuration file
Configure the authentication
Start the installation
Check the installation
Last updated
Was this helpful?