Skip to content

Commit

Permalink
Merge pull request #297 from barakda/push_nvmeof_images_also_latest_tag
Browse files Browse the repository at this point in the history
push nvmeof images latest tag
  • Loading branch information
barakda authored Nov 7, 2023
2 parents a360078 + 5a2d1fd commit 643879a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion mk/containerized.mk
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,13 @@ build: DOCKER_COMPOSE_ENV = DOCKER_BUILDKIT=1 COMPOSE_DOCKER_CLI_BUILD=1
GIT_LATEST_TAG != git describe --tags --abbrev=0
push: ## Push nvmeof and nvmeof-cli containers images to quay.io registries
docker tag $(QUAY_NVMEOF):$(VERSION) $(QUAY_NVMEOF):$(GIT_LATEST_TAG)
docker push $(QUAY_NVMEOF):$(GIT_LATEST_TAG)
docker tag $(QUAY_NVMEOFCLI):$(VERSION) $(QUAY_NVMEOFCLI):$(GIT_LATEST_TAG)
docker tag $(QUAY_NVMEOF):$(VERSION) $(QUAY_NVMEOF):latest
docker tag $(QUAY_NVMEOFCLI):$(VERSION) $(QUAY_NVMEOFCLI):latest
docker push $(QUAY_NVMEOF):$(GIT_LATEST_TAG)
docker push $(QUAY_NVMEOFCLI):$(GIT_LATEST_TAG)
docker push $(QUAY_NVMEOF):latest
docker push $(QUAY_NVMEOFCLI):latest

run: ## Run command CMD inside SVC containers
run: override OPTS += --rm
Expand Down

0 comments on commit 643879a

Please sign in to comment.