fix: use of default profile name as default docker image name
This commit is contained in:
parent
3d9054d25e
commit
1d0c8a4eef
|
@ -1,8 +1,10 @@
|
||||||
#!/usr/bin/make -f
|
#!/usr/bin/make -f
|
||||||
# -*- makefile -*-
|
# -*- makefile -*-
|
||||||
|
|
||||||
## default globals
|
## default globals.
|
||||||
TARGET ?= emqx/emqx
|
## when built with `make docker` command the default profile is either emqx or emqx-ee (for enterprise)
|
||||||
|
## or the TARGET varialbe can be set beforehand to force a different name
|
||||||
|
TARGET ?= emqx/$(PROFILE)
|
||||||
QEMU_ARCH ?= x86_64
|
QEMU_ARCH ?= x86_64
|
||||||
ARCH ?= amd64
|
ARCH ?= amd64
|
||||||
QEMU_VERSION ?= v5.0.0-2
|
QEMU_VERSION ?= v5.0.0-2
|
||||||
|
|
Loading…
Reference in New Issue