Last updated:
0 purchases
awsecrmigration 1.2.1
AWS ECR Migration
Short description
Project used to migrate docker images between cloud and a local machine.
Prerequisites
Local prerequisites
Docker installed.
This project installed with:
pip install aws-ecr-migration
or:
./install.sh
Cloud prerequisites
ECR repository created
Usage
Pulling from ECR repository
from aws_ecr_migration.manage import Manager
from aws_ecr_migration.aws_credentials import AwsCredentials
manager = Manager(
credentials=AwsCredentials(),
remote_repository='remote/repository'
)
manager.pull()
Pushing an image to ECR repository
from aws_ecr_migration.manage import Manager
from aws_ecr_migration.aws_credentials import AwsCredentials
manager = Manager(
credentials=AwsCredentials(),
remote_repository='remote/repository'
)
manager.push_image('myimage')
Pushing a running container to ECR repository
from aws_ecr_migration.manage import Manager
from aws_ecr_migration.aws_credentials import AwsCredentials
manager = Manager(
credentials=AwsCredentials(),
remote_repository='remote/repository'
)
manager.push_container('mycontainer')
Release history
1.2.1
Documentation updates.
1.2.0
Add ability to pull specific image.
1.1.0
Add repository_exists and repository_empty methods.
1.0.0
Initial.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.