uci-docker-nextcloud/deploy/build

13 lines
324 B
Plaintext
Raw Permalink Normal View History

2024-09-12 16:21:59 -07:00
#!/bin/bash
[[ $1 = "-f" ]] && force=force && shift
if [[ ! $(udbuild image exists -e ../build/.env) || $force ]] ; then
echo $force building image
pushd ../build || exit
./build -p -e .env -a build.env $@
popd
echo done building image
else
echo using existing image, use -f to force rebuild
fi