Sm shit changed

- new config on dozzle, gitea, invidious, ollama
- gossa file server
- scripts to poweron/update all dockers
This commit is contained in:
bigboxuser
2025-10-25 10:40:29 +03:00
parent 4b169be4ff
commit 82a84240eb
9 changed files with 87 additions and 10 deletions

14
update-all-docker.sh Executable file
View File

@@ -0,0 +1,14 @@
set -xeu
for dir in */; do
cd $dir
docker-compose down
docker-compose pull
docker-compose up -d
#for dir2 in */; do
# cd $dir2
# ls -d $PWD/*
# cd ..
#done
cd ..
done