diff --git a/docker/dev/deploy.sh b/docker/dev/deploy.sh new file mode 100755 index 0000000..94dd243 --- /dev/null +++ b/docker/dev/deploy.sh @@ -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