docker-scripts/bin/make-all.sh

16 lines
453 B
Bash
Raw Normal View History

2021-07-13 18:24:10 +03:00
export SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
clear
echo "======================================="
echo "===== Building third-party images ====="
echo "======================================="
${SCRIPTPATH}/make-all-third-party.sh
echo "======================================="
echo "===== Building EpicMorg images ====="
echo "======================================="
${SCRIPTPATH}/.make-all-epicmorg-based.sh
exit 0