We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df8f600 commit 0f5d595Copy full SHA for 0f5d595
Makefile
@@ -2,8 +2,8 @@
2
UNAME := $(shell uname)
3
DOCKER_COMPOSE_FILE := docker-compose.yml
4
5
-export PROJECT := $(shell basename $(CURDIR))
6
-export IMAGE_MAINTAINER := $(shell grep '^IMAGE_MAINTAINER' ./environment | sed 's/^.*=//g')
+export PROJECT := $(shell basename $(CURDIR) | tr '[:upper:]' '[:lower:]')
+export IMAGE_MAINTAINER := $(shell grep '^IMAGE_MAINTAINER' ./environment | sed 's/^.*=//g' | tr '[:upper:]' '[:lower:]')
7
LABLE_BASE := ${IMAGE_MAINTAINER}/${PROJECT}
8
9
ifeq ($(UNAME), Linux)
0 commit comments