uci-docker-caddy/dev/build
David Kebler 55648e8155 Initial commit
fully operational caddy death star
2023-03-31 13:43:26 -07:00

9 lines
252 B
Bash
Executable file

#!/bin/bash
build=${UDBUILD:-$(command -v udbuild)}
if [[ $build ]];then
DIR=$(dirname "$(realpath "$BASH_SOURCE")")
$build -t dev -e $DIR/build.env "$@"
else
echo can not find UCI Docker Build script, run ./install from the uci-docker-build repo
fi