diff --git a/startall.sh b/startall.sh deleted file mode 100755 index 5db0291..0000000 --- a/startall.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -script_root="$( dirname $0 )" - -for y in "${script_root}"/*.yml;do - by="$(basename $y)" - sudo docker-compose -f "${y}" pull - sudo docker-compose -f "${y}" -p "${by//.}" up -d -done - -sudo docker image prune -f diff --git a/updategit.sh b/updategit.sh deleted file mode 100755 index 8532498..0000000 --- a/updategit.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash - -cp .env .env_template -sed -i 's/=.*/=/' .env_template - -git add . -git commit -m "New backup `date +'%Y-%m-%d %H:%M:%S'`" -git push