redid all networks & added cloudflare tunnel

This commit is contained in:
2023-12-26 22:40:54 +00:00
parent 67af9cd3b0
commit e395b238ff
20 changed files with 171 additions and 183 deletions

11
repull-all.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
for dir in */ ; do
if [ -d "$dir" ]; then
echo "Entering directory: $dir"
cd "$dir"
docker compose down && docker compose pull && docker compose up -d
cd ..
fi
done