Created
August 27, 2020 02:19
-
-
Save awssimplified/da49577fa48128e1da992dd6ec21085c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Commands | |
------------ | |
1. Build Docker Image | |
docker build -t test . | |
2. Run container /w image | |
docker run -d --publish 8888:5000 test | |
3. Login to ECR | |
aws ecr get-login-password --region REGIONHERE!!!! | docker login --username AWS --password-stdin ACCOUNTIDHERE!!!!.dkr.ecr.REGIONHERE!!!.amazonaws.com | |
4. Tag the version | |
docker tag test:latest YOURACCOUNT.dkr.ecr.YOURREGION-1.amazonaws.com/YOURREPO:YOURTAG | |
5. Upload | |
docker push YOURACCOUNT.dkr.ecr.YOURREGION.amazonaws.com/YOURREPO:YOURTAG | |
Policy Document | |
----------- | |
ECR | |
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "VisualEditor0", | |
"Effect": "Allow", | |
"Action": "ecr:*", | |
"Resource": "*" | |
}, | |
{ | |
"Sid": "VisualEditor01", | |
"Effect": "Allow", | |
"Action": "ecr:GetAuthorizationToken", | |
"Resource": "*" | |
}, | |
{ | |
"Sid": "VisualEditor02", | |
"Effect": "Allow", | |
"Action": "ecr:InitiateLayerUpload", | |
"Resource": "*" | |
} | |
] | |
} | |
ECS | |
arn:aws:iam::aws:policy/AmazonECS_FullAccess |
Where is the python api code?
Thanks, but would have been great if you have included the dockerfile too.
can you pls provide .py code .. thanks for your time.
Show Random Cat py
#Simplest app.py code for demo
from flask import Flask
app = Flask(__name__)
@app.route('/')
def index():
return "<img src=https://cataas.com/cat>"
if __name__ == "__main__":
app.run(host="0.0.0.0",port=5000)
Where is the python api code?
In the git repo from the docker curriculum link (posted within the youTube video description)
git clone https://github.com/prakhar1989/docker-curriculum.git
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, please.