random fixes
This commit is contained in:
parent
0bfaa46ce7
commit
306efa66c7
@ -1,7 +1,4 @@
|
|||||||
|
all: docker
|
||||||
|
|
||||||
docker:
|
docker:
|
||||||
docker build . -t "iptestground/composer:latest"
|
docker build -t "iptestground/composer:latest" .
|
||||||
|
|
||||||
|
|
||||||
all: docker
|
|
||||||
|
@ -4,6 +4,18 @@
|
|||||||
# plan manifests from the user's local filesystem into a temporary
|
# plan manifests from the user's local filesystem into a temporary
|
||||||
# directory that's bind-mounted into the container.
|
# directory that's bind-mounted into the container.
|
||||||
|
|
||||||
|
set -o errexit
|
||||||
|
set -o pipefail
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
err_report() {
|
||||||
|
echo "Error on line $1"
|
||||||
|
}
|
||||||
|
|
||||||
|
trap 'err_report $LINENO' ERR
|
||||||
|
|
||||||
|
|
||||||
image_name="iptestground/composer"
|
image_name="iptestground/composer"
|
||||||
image_tag="latest"
|
image_tag="latest"
|
||||||
image_full_name="$image_name:$image_tag"
|
image_full_name="$image_name:$image_tag"
|
||||||
|
Loading…
Reference in New Issue
Block a user