Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
freem
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Openai/694ab010-3e7c-8000-b0e8-b98c22b7a063
(section)
Add languages
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
=== This requires: === * EC2 has an IAM role allowing ECR actions * AWS CLI installed on EC2 (not laptop) ==== <syntaxhighlight lang="bash">sudo apt-get update ==== sudo apt-get install -y awscli aws --version </syntaxhighlight> Confirm the instance role works: <syntaxhighlight lang="bash">aws sts get-caller-identity </syntaxhighlight> If this fails, your instance does not have a role with permissions. ==== <syntaxhighlight lang="bash">export AWS_REGION="us-east-1" ==== </syntaxhighlight> ==== <syntaxhighlight lang="bash">aws ecr create-repository --repository-name ml-chatbot --region "$AWS_REGION" >/dev/null || true ==== </syntaxhighlight> Get your account ID: <syntaxhighlight lang="bash">ACCOUNT_ID=$(aws sts get-caller-identity --query Account --output text) echo $ACCOUNT_ID </syntaxhighlight> Set repo URI: <syntaxhighlight lang="bash">ECR_URI="$ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com/ml-chatbot" echo $ECR_URI </syntaxhighlight> ==== <syntaxhighlight lang="bash">aws ecr get-login-password --region "$AWS_REGION" \ ==== | docker login --username AWS --password-stdin "$ACCOUNT_ID.dkr.ecr.$AWS_REGION.amazonaws.com" </syntaxhighlight> ==== <syntaxhighlight lang="bash">docker tag ml-chatbot:latest "$ECR_URI:latest" ==== docker push "$ECR_URI:latest" </syntaxhighlight> Now the image is stored in ECR.
Summary:
Please note that all contributions to freem are considered to be released under the Creative Commons Attribution-ShareAlike 4.0 (see
Freem:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)