Last active
May 2, 2016 19:24
-
-
Save tmaslen/cd74dcaecbc3e8f4c262067c89e3ad1b 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 | |
# Create a temp file that runs install instructions on the host | |
cat > finish-code-deploy.sh <<- EOM | |
rm -fr tweetgest.com | |
mkdir tweetgest.com | |
unzip code-to-deploy.zip -d tweetgest.com | |
EOM | |
# Zip up and deploy the code and the install script | |
zip -r code-to-deploy bin config lib tests package.json | |
docker-machine scp code-to-deploy.zip tweetgest-prod:/xxx/xxx/code-to-deploy.zip | |
docker-machine scp finish-code-deploy.sh tweetgest-prod:/xxx/xxx/finish-code-deploy.sh | |
docker-machine ssh tweetgest-prod chmod +x finish-code-deploy.sh | |
# Execute the install and then install dependencies | |
docker-machine ssh tweetgest-prod ./finish-code-deploy.sh | |
docker run --rm -v /xxx/xxx/tweetgest.com:/usr/src/app -i tmaslen/tweetgest npm install | |
# Tidy up | |
rm code-to-deploy.zip | |
rm finish-code-deploy.sh | |
docker-machine ssh tweetgest-prod rm finish-code-deploy.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment