-
-
Save rootux/b48fb9fde873410b58406f258ef01328 to your computer and use it in GitHub Desktop.
Build a Docker image, push it to AWS EC2 Container Registry, then deploy it to AWS Elastic Beanstalk
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
#!/bin/bash | |
# usage: ./deploy.sh staging | |
BRANCH=$1 | |
SHA1=`git log | grep -o '\w\{8,\}' | head -n 1` | |
AWS_ACCOUNT_ID=12345678900 | |
NAME=name-of-service-to-deploy | |
EB_BUCKET=aws-s3-bucket-to-hold-application-versions | |
VERSION=$BRANCH-$SHA1 | |
ZIP=$VERSION.zip | |
aws configure set default.region us-east-1 | |
# Authenticate against our Docker registry | |
eval $(aws ecr get-login) | |
# Build and push the image | |
docker build -t $NAME:$VERSION . | |
docker tag $NAME:$VERSION $AWS_ACCOUNT_ID.dkr.ecr.us-east-1.amazonaws.com/$NAME:$VERSION | |
docker push $AWS_ACCOUNT_ID.dkr.ecr.us-east-1.amazonaws.com/$NAME:$VERSION | |
# Replace the <AWS_ACCOUNT_ID> with the real ID | |
sed -i='' "s/<AWS_ACCOUNT_ID>/$AWS_ACCOUNT_ID/" Dockerrun.aws.json | |
# Replace the <NAME> with the real name | |
sed -i='' "s/<NAME>/$NAME/" Dockerrun.aws.json | |
# Replace the <TAG> with the real version number | |
sed -i='' "s/<TAG>/$VERSION/" Dockerrun.aws.json | |
# Zip up the Dockerrun file (feel free to zip up an .ebextensions directory with it) | |
zip -r $ZIP Dockerrun.aws.json | |
aws s3 cp $ZIP s3://$EB_BUCKET/$ZIP | |
# Create a new application version with the zipped up Dockerrun file | |
aws elasticbeanstalk create-application-version --application-name $NAME-application \ | |
--version-label $VERSION --source-bundle S3Bucket=$EB_BUCKET,S3Key=$ZIP | |
# Update the environment to use the new application version | |
aws elasticbeanstalk update-environment --environment-name $NAME \ | |
--version-label $VERSION |
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
# Example Dockerfile | |
FROM hello-world |
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
{ | |
"AWSEBDockerrunVersion": "1", | |
"Image": { | |
"Name": "<AWS_ACCOUNT_ID>.dkr.ecr.us-east-1.amazonaws.com/<NAME>:<TAG>", | |
"Update": "true" | |
}, | |
"Ports": [ | |
{ | |
"ContainerPort": "443" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment