2019-09-13 17:11:41 +00:00
|
|
|
#!/bin/sh
|
|
|
|
git checkout master
|
|
|
|
|
|
|
|
# Creating the new tag
|
|
|
|
new_tag="$1"
|
|
|
|
git tag $new_tag
|
|
|
|
|
|
|
|
# Changing the docker-compose prod
|
|
|
|
sed -i "s/dessalines\/torrents-csv:.*/dessalines\/torrents-csv:$new_tag/" ../prod/docker-compose.yml
|
|
|
|
git add ../prod/docker-compose.yml
|
|
|
|
|
|
|
|
# The commit
|
|
|
|
git commit -m"Upping version."
|
|
|
|
|
|
|
|
git push origin $new_tag
|
|
|
|
git push
|
|
|
|
|
|
|
|
# Rebuilding docker
|
|
|
|
docker-compose build
|
2019-09-23 22:30:38 +00:00
|
|
|
docker tag dev_torrents-csv:latest dessalines/torrents-csv:$new_tag
|
2019-09-13 17:11:41 +00:00
|
|
|
docker push dessalines/torrents-csv:$new_tag
|
2020-01-09 16:34:14 +00:00
|
|
|
|
|
|
|
# SSH and pull it
|
2020-01-09 17:13:22 +00:00
|
|
|
ssh tyler@45.55.175.59 "cd ~/git/torrents.csv/scripts/ && ./git_update.sh && cd ../docker/prod && git pull && docker-compose up -d"
|