Adding deploy script.

This commit is contained in:
Dessalines 2019-09-13 10:11:41 -07:00
parent 28cb2b282f
commit 28376988cd
1 changed files with 21 additions and 0 deletions

21
docker/dev/deploy.sh Executable file
View File

@ -0,0 +1,21 @@
#!/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
docker tag dev_lemmy:latest dessalines/torrents-csv:$new_tag
docker push dessalines/torrents-csv:$new_tag