Skip to content

Commit

Permalink
small experiment.
Browse files Browse the repository at this point in the history
  • Loading branch information
mihxil committed Nov 18, 2024
1 parent 6423f7a commit 65a7aa1
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
.DEFAULT_GOAL := docker
IMAGE := vpro/openshift-helm:main
TAG := $(shell git symbolic-ref -q --short HEAD || git describe --tags --exact-match)
IMAGE := vpro/openshift-helm:$(TAG)
MMIMAGE:=mmbase/openshift-helm:$(TAG)

help: ## Show this help.
@sed -n 's/^##//p' $(MAKEFILE_LIST)
Expand All @@ -10,3 +12,14 @@ docker: ## build image locally

explore: ## look around
docker run -it $(IMAGE)



# lets try to push a verison in docker.io, just to try out whether we then can in gitlab'
# 'Enable the Dependency Proxy to cache container images from Docker Hub and automatically clear the cache.'
mmdocker: ## build image locally for upload in docker.io/mmbase
docker buildx build --platform linux/amd64 -t $(MMIMAGE) .


mmpush:
docker image push $(MMIMAGE)

0 comments on commit 65a7aa1

Please sign in to comment.