chore(build): when using make *-docker, load docker image by default

This commit is contained in:
Ivan Dyachkov 2024-04-16 07:56:00 +02:00
parent d82f7c3f71
commit 3b71fba9e3
1 changed files with 1 additions and 1 deletions

2
build
View File

@ -493,7 +493,7 @@ make_docker() {
if [ "${DOCKER_PUSH:-false}" = true ]; then
DOCKER_BUILDX_ARGS+=(--push)
fi
if [ "${DOCKER_LOAD:-false}" = true ]; then
if [ "${DOCKER_LOAD:-true}" = true ]; then
DOCKER_BUILDX_ARGS+=(--load)
fi
if [ -d "${REBAR_GIT_CACHE_DIR:-}" ]; then