From a8eb3cd6f5d8d1d012fef40b2a5c8f4136a0e783 Mon Sep 17 00:00:00 2001 From: mr Date: Thu, 5 Feb 2026 12:12:42 +0100 Subject: [PATCH] publish-registry --- Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index e426f5e..561b1a6 100755 --- a/Makefile +++ b/Makefile @@ -22,19 +22,21 @@ clean: docker: DOCKER_BUILDKIT=1 docker build -t oc-workspace -f Dockerfile . --build-arg=HOST=$(HOST) - docker tag oc-workspace:latest oc/oc-workspace:0.0.1 + docker tag opencloudregistry/oc-workspace:latest oc/oc-workspace:0.0.1 publish-kind: kind load docker-image oc/oc-workspace:0.0.1 --name $(CLUSTER_NAME) | true publish-registry: - @echo "TODO" + docker push opencloudregistry/oc-workspace: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