chore(build): when using make *-docker, load docker image by default
This commit is contained in:
parent
d82f7c3f71
commit
3b71fba9e3
2
build
2
build
|
|
@ -493,7 +493,7 @@ make_docker() {
|
||||||
if [ "${DOCKER_PUSH:-false}" = true ]; then
|
if [ "${DOCKER_PUSH:-false}" = true ]; then
|
||||||
DOCKER_BUILDX_ARGS+=(--push)
|
DOCKER_BUILDX_ARGS+=(--push)
|
||||||
fi
|
fi
|
||||||
if [ "${DOCKER_LOAD:-false}" = true ]; then
|
if [ "${DOCKER_LOAD:-true}" = true ]; then
|
||||||
DOCKER_BUILDX_ARGS+=(--load)
|
DOCKER_BUILDX_ARGS+=(--load)
|
||||||
fi
|
fi
|
||||||
if [ -d "${REBAR_GIT_CACHE_DIR:-}" ]; then
|
if [ -d "${REBAR_GIT_CACHE_DIR:-}" ]; then
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue