this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add pruning to commit.sh

+6
+6
commit.sh
··· 8 8 9 9 # saves current state of fs 10 10 git stash 11 + 11 12 # pull latest version 12 13 git pull 13 14 git submodule update 15 + 14 16 # restart/rebuild all containers 15 17 docker compose build --no-cache 16 18 docker compose up -d --force-recreate 17 19 # add second docker compose up because it acts up ?? 18 20 docker compose up -d 21 + 22 + # clear out dockerfiles to stop my drive exploding 23 + docker system prune -af 24 + 19 25 # return prev state of fs 20 26 git stash pop 21 27 exit 0