uci-docker-caddy/build

8 lines
276 B
Plaintext
Raw Normal View History

build=${UDBUILD:-$(command -v udbuild)}
if [[ $build ]];then
echo copying conf directory into image source before build
/bin/cp -R -p conf/. src/init/opt/caddy/conf
$build -a "$@"
else
echo can not find UCI Docker Build script, run ./install from the uci-docker-build repo
fi