After success registration in AWS you can start using it. 1. Create secret keys ... Go to https://console.aws.amazon.com/iam/home?#/security_credential and create keys, you will need them for logging in local docker, ... 2. Create "EC2 Container Service" In "Repositories" create your new repository. When you create it you will get commands for docker and was for your repository - click "View push command" (sample code) 3. Install AWS client in local computer. There you must have docker installed to. Installation: http://docs.aws.amazon.com/cli/latest/userguide/awscli-install-windows.html#install-msi-on-windows 4. Run docker client (local computer). In cmd run: $ aws configure (you enter credentials from Access keys ...) $ aws ecr get-login --no-include-email --region eu-central-1 (you use your location, look in your sample for running) You run what you will get in response like: docker login -u AWS -p eyJwY................ $ docker tag...
Comments