Skip to content

Instantly share code, notes, and snippets.

@primeobsession
primeobsession / gist:9cb5b40096747b863cc9
Last active August 28, 2019 20:47
circle-ci_elastic-beanstalk_deploy
#!/usr/bin/env bash
docker login -u $DOCKER_USER -p $DOCKER_PASS
SHA1=$CIRCLE_SHA1
# Add latest tag
docker tag $IMAGE_PATH:$CIRCLE_BUILD_NUM $IMAGE_PATH:latest
docker tag $IMAGE_PATH:$CIRCLE_BUILD_NUM $IMAGE_PATH:latest_$CIRCLE_BRANCH
@primeobsession
primeobsession / gist:f9d30c5ebc8b0486de14
Last active June 4, 2022 00:40
Install latest version of ImageMagick on Amazon Beanstalk
# Check if this is the very first time that this script is running
if ([ ! -f /root/.not-a-new-instance.txt ]) then
newEC2Instance=true
fi
if ([ $newEC2Instance ]) then
whoami
cd /tmp