summaryrefslogtreecommitdiff
path: root/make/container.mk
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-07-02 09:44:20 +0100
committerJoe Carstairs <me@joeac.net>2026-07-02 09:44:20 +0100
commitd3845601e96a533f61bdcceab1d0119c5d69826e (patch)
tree2023a0bdd9231524f335d8ebad910dcdbc808510 /make/container.mk
parent1385472aaf18373d8c713f4235352c494a3fd2a4 (diff)
gets container_image_name from podman-compose config
Diffstat (limited to 'make/container.mk')
-rw-r--r--make/container.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/container.mk b/make/container.mk
index b62dac0..a3e23e6 100644
--- a/make/container.mk
+++ b/make/container.mk
@@ -5,7 +5,7 @@ IMAGE_PREFIX := $(if $(filter armv7%,$(CPU_ARCH)),armv7/)
REGISTRY_DOMAIN := git.joeac.net
REGISTRY_USER := joeac
-container_image_name = $(REGISTRY_DOMAIN)/$(REGISTRY_USER)/$(CONTAINER_PREFIX)joeac.net-$(module)
+container_image_name = $(shell podman-compose config | yq ".services.$(module).image")
is_containerised = $(filter $(COMPOSE_SERVICES),$(module))
has_dockerfile = $(shell test -f $(module).Dockerfile)