Created
June 4, 2020 13:49
-
-
Save rohit-saharan/9d4ee37619cba71ae430c0673e77fd9d 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
#!/bin/bash | |
export AWS_ACCESS_KEY_ID="" | |
export AWS_SECRET_ACCESS_KEY="" | |
export AWS_REGION="" | |
export SQS_URL="" | |
apt-get update -qq | |
apt-get -qq -y install python3 git | |
curl -fsSL https://get.docker.com | bash - | |
curl -L "https://github.com/docker/compose/releases/download/1.25.5/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose | |
chmod +x /usr/local/bin/docker-compose | |
cd /opt | |
git clone https://github.com/geekrohit/celery-sqs-spot.git celery | |
cd celery | |
docker-compose up -d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment