2016-01-29 18:41:08 +01:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
2016-07-04 18:46:27 +02:00
|
|
|
build_and_push(){
|
|
|
|
base=$1
|
|
|
|
suite=$2
|
|
|
|
build_dir=$3
|
2016-05-16 04:18:36 +02:00
|
|
|
|
2016-08-12 00:43:41 +02:00
|
|
|
docker build --rm --force-rm -t r.j3ss.co/${base}:${suite} ${build_dir} || return 1
|
2016-01-29 18:41:08 +01:00
|
|
|
|
2016-08-12 00:43:41 +02:00
|
|
|
# on successful build, push the image
|
2016-01-29 18:41:08 +01:00
|
|
|
echo " --- "
|
|
|
|
echo "Successfully built ${base}:${suite} with context ${build_dir}"
|
|
|
|
echo " --- "
|
|
|
|
|
2016-06-08 21:46:38 +02:00
|
|
|
# try push a few times because notary server sometimes returns 401 for
|
|
|
|
# absolutely no reason
|
|
|
|
n=0
|
|
|
|
until [ $n -ge 5 ]; do
|
|
|
|
docker push --disable-content-trust=false r.j3ss.co/${base}:${suite} && break
|
|
|
|
echo "Try #$n failed... sleeping for 15 seconds"
|
|
|
|
n=$[$n+1]
|
|
|
|
sleep 15
|
|
|
|
done
|
2016-01-29 20:47:10 +01:00
|
|
|
|
|
|
|
# also push the tag latest for "stable" tags
|
|
|
|
if [[ "$suite" == "stable" ]]; then
|
|
|
|
docker tag r.j3ss.co/${base}:${suite} r.j3ss.co/${base}:latest
|
2016-03-31 03:36:26 +02:00
|
|
|
docker push --disable-content-trust=false r.j3ss.co/${base}:latest
|
2016-01-29 20:47:10 +01:00
|
|
|
fi
|
2016-07-04 18:46:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
main(){
|
|
|
|
# get the dockerfiles
|
|
|
|
IFS=$'\n'
|
|
|
|
files=( $(find . -iname '*Dockerfile' | sed 's|./||') )
|
|
|
|
unset IFS
|
|
|
|
|
|
|
|
ERRORS=()
|
|
|
|
# build all dockerfiles
|
|
|
|
for f in "${files[@]}"; do
|
|
|
|
image=${f%Dockerfile}
|
|
|
|
base=${image%%\/*}
|
|
|
|
build_dir=$(dirname $f)
|
|
|
|
suite=${build_dir##*\/}
|
|
|
|
|
|
|
|
if [[ -z "$suite" ]] || [[ "$suite" == "$base" ]]; then
|
|
|
|
suite=latest
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ "${base}" == "sup" ]]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
{
|
|
|
|
build_and_push "${base}" "${suite}" "${build_dir}"
|
|
|
|
} || {
|
2016-08-12 00:43:41 +02:00
|
|
|
# add to errors
|
|
|
|
ERRORS+=("${base}:${suite}")
|
|
|
|
}
|
|
|
|
echo
|
|
|
|
echo
|
|
|
|
done
|
2016-07-04 18:46:27 +02:00
|
|
|
|
2016-08-12 00:43:41 +02:00
|
|
|
if [ ${#ERRORS[@]} -eq 0 ]; then
|
|
|
|
echo "No errors, hooray!"
|
|
|
|
else
|
|
|
|
echo "[ERROR] Some images did not build correctly, see below." >&2
|
|
|
|
echo "These images failed: ${ERRORS[@]}" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
2016-07-04 18:46:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
main $@
|