taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 44c842db0bff9da30cb8fba46113b6586e8588da
parent 2ed79a7615996ae7dbd2202183612e08324d3ab7
Author: MS <ms@taler.net>
Date:   Thu, 17 Nov 2022 22:14:05 +0100

Docker sandbox.

Remove intermediate containers when building.

Diffstat:
Mdocker/demo/build_base.sh | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docker/demo/build_base.sh b/docker/demo/build_base.sh @@ -49,7 +49,7 @@ if test -n "$2"; then TAGS_FILE_DIR=$(dirname $2) TAGS_FILE_NAME=$(basename $2) cd $TAGS_FILE_DIR - docker build --no-cache \ + docker build --no-cache --force-rm \ -t taler_local/taler_base \ -f $DOCKER_FILE \ --build-arg tags_file=$TAGS_FILE_NAME . @@ -57,6 +57,6 @@ if test -n "$2"; then exit 0 fi -docker build --no-cache \ +docker build --no-cache --force-rm \ -t taler_local/taler_base \ -f $DOCKER_FILE .