publish registry

This commit is contained in:
mr
2026-02-05 12:11:40 +01:00
parent 525b4d9179
commit d0adc2b44c

View File

@@ -22,19 +22,21 @@ clean:
docker:
DOCKER_BUILDKIT=1 docker build -t oc-workflow -f Dockerfile . --build-arg=HOST=$(HOST)
docker tag oc-workflow:latest oc/oc-workflow:0.0.1
docker tag opencloudregistry/oc-workflow:latest oc/oc-workflow:0.0.1
publish-kind:
kind load docker-image oc/oc-workflow:0.0.1 --name $(CLUSTER_NAME) | true
publish-registry:
@echo "TODO"
docker push opencloudregistry/oc-workflow:latest
docker-deploy:
docker compose up -d
run-docker: docker publish-kind publish-registry docker-deploy
all: clean docker publish-kind publish-registry
all: clean docker publish-kind
ci: clean docker publish-registry
.PHONY: build run clean docker publish-kind publish-registry