From c26508fc3a9fa6522f07eea2a0db256854ff9f25 Mon Sep 17 00:00:00 2001 From: Timo Schneider Date: Wed, 29 May 2024 12:33:40 +0200 Subject: [PATCH] added --load to docker build, since old versiond don't do it by themself --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4835cc9..02b50e8 100644 --- a/Makefile +++ b/Makefile @@ -40,15 +40,15 @@ build: uninstall frontend backend database keycloak .PHONY = frontend frontend: gitsync - docker buildx build --tag $(DOCKER_REGISTRY)$(FRONTEND) $(ROOT_DIR)SWA-frontend + docker buildx build --tag $(DOCKER_REGISTRY)$(FRONTEND) --load $(ROOT_DIR)SWA-frontend .PHONY = backend backend: gitsync - docker buildx build --tag $(DOCKER_REGISTRY)$(BACKEND) $(ROOT_DIR)SWA-backend + docker buildx build --tag $(DOCKER_REGISTRY)$(BACKEND) --load $(ROOT_DIR)SWA-backend .PHONY = database database: gitsync - docker buildx build --tag $(DOCKER_REGISTRY)$(DATABASE) $(ROOT_DIR)SWA-database + docker buildx build --tag $(DOCKER_REGISTRY)$(DATABASE) --load $(ROOT_DIR)SWA-database .PHONY = keycloak keycloak: