Skip to content

Commit

Permalink
feat(make): opens container registry for configuration
Browse files Browse the repository at this point in the history
Making it possible to push images to your repositories by using
make image-push -e CONTAINER_REGISTRY=bmajsak
  • Loading branch information
bartoszmajsak committed Jun 27, 2024
1 parent 8deeb2a commit 33fe353
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ ifneq (, $(shell which podman))
CONTAINER_ENGINE = podman
endif

IMG ?= quay.io/maistra-dev/$(PROJECT_NAME)
CONTAINER_REGISTRY ?= maistra-dev
IMG ?= quay.io/$(CONTAINER_REGISTRY)/$(PROJECT_NAME)
# If the commit is not tagged, use "latest", otherwise use the tag name
ifeq ($(GIT_TAG), 0)
TAG ?= $(VERSION)
Expand Down

0 comments on commit 33fe353

Please sign in to comment.