···8899# saves current state of fs
1010git stash
1111+1112# pull latest version
1213git pull
1314git submodule update
1515+1416# restart/rebuild all containers
1517docker compose build --no-cache
1618docker compose up -d --force-recreate
1719# add second docker compose up because it acts up ??
1820docker compose up -d
2121+2222+# clear out dockerfiles to stop my drive exploding
2323+docker system prune -af
2424+1925# return prev state of fs
2026git stash pop
2127exit 0