remove old scripts

This commit is contained in:
Penelope Gwen 2025-03-10 20:37:17 -07:00
parent a801ff1ebb
commit 38b85e9d6e
2 changed files with 0 additions and 19 deletions

View file

@ -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

View file

@ -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