#!/bin/bash # vim: ai:ts=8:sw=8:noet set -EeufCo pipefail export SHELLOPTS # propagate set to children by default IFS=$'\t\n' # check required commands are in place command -v docker >/dev/null 2>&1 || { echo 'please install docker-client' exit 1 } docker buildx build \ --no-cache \ --pull \ --load \ --tag "chn2guevara/transmission-hacks:${BUILD_ID}" \ .