added scripts + readme typo
This commit is contained in:
parent
75594805e5
commit
b5cfe77d34
5 changed files with 11 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -29,4 +29,7 @@
|
|||
|
||||
# Keep utility files in root
|
||||
!.gitignore
|
||||
!start_all.sh
|
||||
!stop_all.sh
|
||||
!stop_very_all.sh
|
||||
!README.md
|
||||
|
|
|
|||
|
|
@ -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
3
start_all.sh
Executable 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
3
stop_all.sh
Executable 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
1
stop_very_all.sh
Executable file
|
|
@ -0,0 +1 @@
|
|||
docker stop $(docker ps -a -q)
|
||||
Loading…
Add table
Add a link
Reference in a new issue