Skip to content

Commit

Permalink
Fix Makefile terminology (Docker -> Container) (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Mar 12, 2024
2 parents f6eedd9 + 2812efc commit 3e0c153
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ACTIONS := archive2disk cexec grub2disk kexec oci2disk qemuimg2disk rootio slurp
GIT_COMMIT := $(shell git rev-parse HEAD)

# Define container registry details.
DOCKER_REPOSITORY := quay.io/tinkerbell/actions
CONTAINER_REPOSITORY := quay.io/tinkerbell/actions

include Rules.mk

Expand All @@ -40,7 +40,7 @@ push: $(addprefix push-,$(ACTIONS))

.PHONY: push-%
push-%: ## Push a specific action image to the registry. This recipe assumes you are already authenticated with the registry.
IMAGE_NAME=$(DOCKER_REPOSITORY)/$*:$(GIT_COMMIT)
IMAGE_NAME=$(CONTAINER_REPOSITORY)/$*:$(GIT_COMMIT)
docker tag $*:latest $$IMAGE_NAME
docker push $$IMAGE_NAME

Expand Down

0 comments on commit 3e0c153

Please sign in to comment.