Skip to content

Prepare user Docker registry for Lambda#

Note: Skip this section if you are not going to use the Lambda service.

You need to prepare the user registry for storing Lambda images. Transfer the base images and the Kaniko executor image to your registry using the commands below.

Upload the images from the remote repository to the local image repository:

docker pull dockerhub.visionlabs.ru/luna/lpa-lambda-base-fsdk:v.0.1.6
docker pull dockerhub.visionlabs.ru/luna/lpa-lambda-base:v.0.1.6
docker pull dockerhub.visionlabs.ru/luna/kaniko-executor:latest

Add new names to the images by replacing new-registry with your own. The names of the base images in the custom registry should be the same as in the dockerhub.visionlabs.visionlabs.ru/luna registry.

docker tag dockerhub.visionlabs.ru/luna/lpa-lambda-base-fsdk:v.0.1.6 new-registry/lpa-lambda-base-fsdk:v.0.1.6
docker tag dockerhub.visionlabs.ru/luna/lpa-lambda-base:v.0.1.6 new-registry/lpa-lambda-base:v.0.1.6
docker tag dockerhub.visionlabs.ru/luna/kaniko-executor:latest new-registry/kaniko-executor:latest

Send local images to your remote repository, replacing new-registry with your own.

docker push new-registry/lpa-lambda-base-fsdk:v.0.1.6
docker push new-registry/lpa-lambda-base:v.0.1.6
docker push new-registry/kaniko-executor:latest