From e49ccc5aa3a55b3a3f5229839383861585dec9c6 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Mon, 22 Jun 2026 13:42:35 +0100 Subject: [PATCH] no more prefixes in container_image_name (incompatible with compose.yml) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2ff8de3..035d6f7 100644 --- a/Makefile +++ b/Makefile @@ -13,12 +13,12 @@ MODULES := http gemini smtp # FUNCTIONS # ############# -container_image_name = $(REGISTRY_DOMAIN)/$(REGISTRY_USER)/$(IMAGE_PREFIX)joeac.net-$(module) +container_image_name = $(REGISTRY_DOMAIN)/$(REGISTRY_USER)/joeac.net-$(module) define build_module_rule = .PHONY: build_$(module) build_$(module): $(module) - sudo podman-compose build $(module) -t $(container_image_name) + sudo podman-compose build $(module) endef define push_module_rule =