Skip to content

Commit 3d3f7cd

Browse files
committed
fix
Signed-off-by: alyssacgoins <[email protected]>
1 parent 59a8be5 commit 3d3f7cd

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

backend/Makefile

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,17 @@ TLS_ENABLED ?= "false"
66
CERT_MANAGER_VERSION ?= v1.16.2
77

88
# Container Build Params
9-
CONTAINER_ENGINE ?= podman
9+
CONTAINER_ENGINE ?= $(shell \
10+
if command -v docker >/dev/null 2>&1; then \
11+
echo docker; \
12+
elif command -v podman >/dev/null 2>&1; then \
13+
echo podman; \
14+
fi \
15+
)
1016

1117
# IMG_REGISTRY can be used to automatically prepend registry details. e.g. "quay.io/kubeflow/"
12-
IMG_REGISTRY ?= quay.io/rh-ee-agoins/
13-
IMG_TAG_APISERVER ?= apiserver:10
18+
IMG_REGISTRY ?=
19+
IMG_TAG_APISERVER ?= apiserver
1420
IMG_TAG_PERSISTENCEAGENT ?= persistence-agent
1521
IMG_TAG_CACHESERVER ?= cache-server
1622
IMG_TAG_SCHEDULEDWORKFLOW ?= scheduledworkflow

0 commit comments

Comments
 (0)