Files
Greg Johnson 7581b6b8c2 initial commit
2025-08-05 15:03:49 +10:00

16 lines
187 B
Bash
Executable File

#!/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