initial commit

This commit is contained in:
Greg Johnson
2025-08-05 15:03:49 +10:00
parent e4ab08b1ff
commit 7581b6b8c2
15 changed files with 689 additions and 0 deletions

15
dn Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
#
# take system services down
#
dn() {
docker compose -f $1/docker-compose.yml down
}
if [ $1 ]
then
dn $1
else
dn "florida/homebridge"
dn "florida/samba"
fi