diff options
| author | Joe Carstairs <me@joeac.net> | 2026-07-02 09:44:20 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-07-02 09:44:20 +0100 |
| commit | d3845601e96a533f61bdcceab1d0119c5d69826e (patch) | |
| tree | 2023a0bdd9231524f335d8ebad910dcdbc808510 /make/container.mk | |
| parent | 1385472aaf18373d8c713f4235352c494a3fd2a4 (diff) | |
gets container_image_name from podman-compose config
Diffstat (limited to 'make/container.mk')
| -rw-r--r-- | make/container.mk | 2 |
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) |
