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

21
up Executable file
View File

@@ -0,0 +1,21 @@
#!/bin/bash
#
# bring system services up
#
SYS=/srv/sys
cd $SYS
up() {
#ensure updated image
docker compose -f $1/compose.yml up -d --force-recreate
}
if [ $1 ]
then
up $1
else
up "proxy"
up "mail"
up "cloud"
up "www"
fi