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

24
up Executable file
View File

@@ -0,0 +1,24 @@
#!/bin/bash
#
# bring system services up
#
SYS=/srv/sys
cd $SYS
up() {
#ensure updated image
DIR=$1
shift;
docker compose -f $DIR/docker-compose.yml build --pull
# docker compose -f $1/docker-compose.yml up -d --force-recreate
# docker compose --remove-orphans --progress=plain -f $DIR/docker-compose.yml up -d
docker compose -f $DIR/docker-compose.yml up -d
}
if [ $1 ]
then
up $1
else
up "florida/samba"
up "florida/homebridge"
fi