initial commit

This commit is contained in:
Greg Johnson
2025-09-20 12:20:27 +10:00
commit e01e658ca2
20 changed files with 925 additions and 0 deletions

17
dn Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
#
# take system services down
#
down() {
docker compose -f $1/compose.yml down
}
if [ $1 ]
then
down $1
else
down "www"
down "cloud"
down "mail"
down "proxy"
fi