From 4a856b358768668e4964a1e32b52da13f0037087 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Tue, 24 Sep 2019 14:57:25 +0200 Subject: [PATCH] fix(Makefile): environment variable --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 57bd53a..acf5581 100644 --- a/Makefile +++ b/Makefile @@ -47,15 +47,15 @@ BUILD_IMAGE:=volkerraschek/build-image:latest # on or pull from container images. The REGISTRY_NAMESPACE defines the Namespace # where the CONTAINER_RUNTIME will be search for container images or push them # onto. The most time it's the same as REGISTRY_USER. +REGISTRY_USER:=volkerraschek REGISTRY_MIRROR=docker.io REGISTRY_NAMESPACE:=${REGISTRY_USER} -REGISTRY_USER:=volkerraschek + # CONTAINER_IMAGE_VERSION / CONTAINER_IMAGE_NAME / CONTAINER_IMAGE # Defines the name of the new container to be built using several variables. CONTAINER_IMAGE_NAME=${EXECUTABLE} CONTAINER_IMAGE_VERSION?=latest -CONTAINER_IMAGE=${REGISTRY_NAMESPACE}/${CONTAINER_IMAGE_NAME}:${CONTAINER_IMAGE_VERSION} README_FILE:=README.md