Fix rspamd
This commit is contained in:
13
build.sh
Executable file
13
build.sh
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash -e
|
||||
|
||||
TAG="1.5-$(date +%Y%m%d)"
|
||||
|
||||
find . -name Dockerfile | while read i; do
|
||||
dir=$(dirname $i)
|
||||
pushd ${dir}
|
||||
image="genunix/mailu-${dir}:${TAG}"
|
||||
echo "[INFO] Building $(basename $dir)"
|
||||
docker build -t ${image} .
|
||||
docker push ${image}
|
||||
popd
|
||||
done
|
||||
Reference in New Issue
Block a user