Management project which migrates docker images to/from ECR repositories.
Project description
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.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aws_ecr_migration-1.2.1.tar.gz
(15.8 kB
view details)
Built Distribution
File details
Details for the file aws_ecr_migration-1.2.1.tar.gz
.
File metadata
- Download URL: aws_ecr_migration-1.2.1.tar.gz
- Upload date:
- Size: 15.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/2.7.15+
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
8f233ac6c95b414caa8858fda655bb45b40318380ecbdd010577d14ef573a4a6
|
|
MD5 |
8a7c78c865fed8cdea7debaa0827734b
|
|
BLAKE2b-256 |
9b98d9a60e1dde8659a4630a3794bc2ba6fdaa14d57e1fe1c60531402574d825
|
File details
Details for the file aws_ecr_migration-1.2.1-py3-none-any.whl
.
File metadata
- Download URL: aws_ecr_migration-1.2.1-py3-none-any.whl
- Upload date:
- Size: 16.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/2.7.15+
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
c453af88773b053efda06eaa690d5089ad9fe196622672bdea90af7bfc55731d
|
|
MD5 |
56c16cc58b0cff53a1ced03d11cf484a
|
|
BLAKE2b-256 |
52988207728798e491ac9caae1fd6a3976fad8e8394133d2635da513e8951ed7
|