18 lines
302 B
Bash
Executable File
18 lines
302 B
Bash
Executable File
#! /bin/sh
|
|
|
|
#check for user args
|
|
if [ -z "$1" ]; then
|
|
echo no args
|
|
elif [ "$1" = "-b" ]; then
|
|
build="--build"
|
|
echo building
|
|
elif [ "$1" = "-i" ]; then
|
|
vaultPath="/home/venus/Documents/Personal-Wiki"
|
|
echo building
|
|
fi
|
|
|
|
#update the .env
|
|
|
|
#build public vault
|
|
docker compose up -d public_vault_builder
|