Skip to content
Snippets Groups Projects
Verified Commit 6880a366 authored by Sheogorath's avatar Sheogorath :european_castle:
Browse files

cli: Make koolbox image name a constant

parent 7ec1c8dd
No related branches found
No related tags found
No related merge requests found
...@@ -3,6 +3,9 @@ ...@@ -3,6 +3,9 @@
XDG_CONFIG_HOME ?= $(HOME)/.config XDG_CONFIG_HOME ?= $(HOME)/.config
EDITOR ?= "vi" EDITOR ?= "vi"
# Do not adjust.
KOOLBOX_IMAGE = "quay.io/sheogorath/koolbox:latest"
include ../utils/help.mk include ../utils/help.mk
.PHONY: preflight .PHONY: preflight
...@@ -16,7 +19,7 @@ install: preflight ## Install koolbox, the Kubernetes Toolbox for SI-Infrastruct ...@@ -16,7 +19,7 @@ install: preflight ## Install koolbox, the Kubernetes Toolbox for SI-Infrastruct
.PHONY: build .PHONY: build
build: preflight ## Build container locally instead of using one from upstream build: preflight ## Build container locally instead of using one from upstream
podman build -t quay.io/sheogorath/koolbox:latest . podman build -t $(KOOLBOX_IMAGE) .
.PHONY: config .PHONY: config
config: ## Edit your koolbox environment config config: ## Edit your koolbox environment config
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment