added scripts + readme typo

This commit is contained in:
mini-pc-01 2026-02-08 22:54:08 +01:00
parent 75594805e5
commit b5cfe77d34
5 changed files with 11 additions and 1 deletions

3
.gitignore vendored
View file

@ -29,4 +29,7 @@
# Keep utility files in root
!.gitignore
!start_all.sh
!stop_all.sh
!stop_very_all.sh
!README.md

View file

@ -3,7 +3,7 @@
My very simple self-hosting setup.
On my new mini-pc.
Gettings things simpler & simpler overtime.
Check Old_TSDPROXT for old setup.
Check branch : archive_01 for old setup.
Not 100% reproductible (Maybe one day NixOs?), some light debugging & manual adjust when migrating. See random dump at the end

3
start_all.sh Executable file
View file

@ -0,0 +1,3 @@
for d in Containers/*/ ; do
docker compose -f "$d/compose.yaml" up -d
done

3
stop_all.sh Executable file
View file

@ -0,0 +1,3 @@
for d in Containers/*/ ; do
docker compose -f "$d/compose.yaml" down
done

1
stop_very_all.sh Executable file
View file

@ -0,0 +1 @@
docker stop $(docker ps -a -q)