fix(Makefile): environment variable

This commit is contained in:
Markus Pesch 2019-09-24 14:57:25 +02:00
parent f9992ef7c5
commit 4a856b3587
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
1 changed files with 2 additions and 2 deletions

View File

@ -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