added vault builder from public tag documents

This commit is contained in:
venus
2026-03-04 02:10:30 -06:00
parent 394c70454f
commit 0834ddc9cb
11 changed files with 227 additions and 4 deletions

15
build.sh Executable file
View File

@@ -0,0 +1,15 @@
#! /bin/sh
#check for user args
if [ -z "$1" ]; then
echo no args
elif [ "$1" = "-b" ]; then
build="--build"
echo building
elif [ "$1" = "-d" ]; then
up="-d"
echo daemon
fi
docker compose down
docker compose up $up $build