We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f5b9e7 commit 78b9bfeCopy full SHA for 78b9bfe
Makefile
@@ -167,6 +167,14 @@ image-build: ## Build the EPP image using Docker Buildx.
167
image-push: PUSH=--push ## Build the EPP image and push it to $IMAGE_REPO.
168
image-push: image-build
169
170
+.PHONY: image-load
171
+image-load: LOAD=--load ## Build the EPP image and load it in the local Docker registry.
172
+image-load: image-build
173
+
174
+.PHONY: image-kind
175
+image-kind: image-build ## Build the EPP image and load it to kind cluster $KIND_CLUSTER ("kind" by default).
176
+ kind load docker-image $(IMAGE_TAG) --name $(KIND_CLUSTER)
177
178
##@ Lora Syncer
179
180
.PHONY: syncer-image-local-build
0 commit comments