Initial commit. Add updater script and modules. Generated a Readme.md (ai) and manually reviewed.

This commit is contained in:
Oliver Hattshire 2025-10-31 12:32:46 -03:00
commit 291147ae20
8 changed files with 203 additions and 0 deletions

6
docker-update-all.sh Executable file
View file

@ -0,0 +1,6 @@
#!/usr/bin/bash
for script in $(find . -maxdepth 2 -name docker-update.sh); do
pushd $(dirname $script)
./docker-update.sh
popd
done