Update buildx progress configuration

This commit is contained in:
Manuel Alejandro de Brito Fontes 2020-05-31 16:01:01 -04:00
parent 5f03b07245
commit 7598078104
7 changed files with 7 additions and 0 deletions

View file

@ -40,6 +40,7 @@ fi
# build local terraform image to build nginx # build local terraform image to build nginx
docker buildx build \ docker buildx build \
--load \ --load \
--progress plain \
--platform linux/amd64 \ --platform linux/amd64 \
--tag build-ingress-controller-terraform $DIR/images/ingress-controller --tag build-ingress-controller-terraform $DIR/images/ingress-controller

View file

@ -41,6 +41,7 @@ fi
export DOCKER_CLI_EXPERIMENTAL=enabled export DOCKER_CLI_EXPERIMENTAL=enabled
docker buildx build \ docker buildx build \
--load \ --load \
--progress plain \
--platform linux/amd64 \ --platform linux/amd64 \
--tag build-nginx-terraform $DIR/images/nginx --tag build-nginx-terraform $DIR/images/nginx

View file

@ -36,6 +36,7 @@ IMAGE = $(REGISTRY)/cfssl
image: image:
docker buildx build \ docker buildx build \
--load \ --load \
--progress plain \
--platform $(ARCH) \ --platform $(ARCH) \
-t $(IMAGE):$(TAG) rootfs -t $(IMAGE):$(TAG) rootfs

View file

@ -8,6 +8,7 @@ image:
docker buildx build \ docker buildx build \
--pull \ --pull \
--push \ --push \
--progress plain \
--platform amd64 \ --platform amd64 \
--build-arg K8S_RELEASE=v1.17.0 \ --build-arg K8S_RELEASE=v1.17.0 \
--build-arg ETCD_VERSION=v3.3.18 \ --build-arg ETCD_VERSION=v3.3.18 \

View file

@ -36,6 +36,7 @@ IMAGE = $(REGISTRY)/echo
image: image:
docker buildx build \ docker buildx build \
--load \ --load \
--progress plain \
--platform $(ARCH) \ --platform $(ARCH) \
-t $(IMAGE):$(TAG) . -t $(IMAGE):$(TAG) .

View file

@ -39,6 +39,7 @@ PKG=k8s.io/ingress-nginx/images/fastcgi-helloserver
image: build image: build
docker buildx build \ docker buildx build \
--load \ --load \
--progress plain \
--platform $(ARCH) \ --platform $(ARCH) \
-t $(IMAGE):$(TAG) rootfs -t $(IMAGE):$(TAG) rootfs

View file

@ -37,5 +37,6 @@ IMAGE = $(REGISTRY)/httpbin
image: image:
docker buildx build \ docker buildx build \
--load \ --load \
--progress plain \
--platform $(ARCH) \ --platform $(ARCH) \
-t $(IMAGE):$(TAG) rootfs -t $(IMAGE):$(TAG) rootfs