From 5b09c683f856f3efa93bec1fa4463f9b7fef2abe Mon Sep 17 00:00:00 2001 From: mr Date: Thu, 5 Feb 2026 12:07:06 +0100 Subject: [PATCH] publish registry --- Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index c3407ae..9460927 100644 --- a/Makefile +++ b/Makefile @@ -22,19 +22,21 @@ clean: docker: DOCKER_BUILDKIT=1 docker build -t oc-peer -f Dockerfile . --build-arg=HOST=$(HOST) - docker tag oc-peer:latest oc/oc-peer:0.0.1 + docker tag opencloudregistry/oc-peer:latest oc/oc-peer:0.0.1 publish-kind: kind load docker-image oc/oc-peer:0.0.1 --name $(CLUSTER_NAME) | true publish-registry: - @echo "TODO" + docker push opencloudregistry/oc-peer:latest docker-deploy: docker compose up -d run-docker: docker publish-kind publish-registry docker-deploy -all: docker publish-kind publish-registry +all: docker publish-kind + +ci: docker publish-registry .PHONY: build run clean docker publish-kind publish-registry