added --load to docker build, since old versiond don't do it by themself
This commit is contained in:
6
Makefile
6
Makefile
@@ -40,15 +40,15 @@ build: uninstall frontend backend database keycloak
|
|||||||
|
|
||||||
.PHONY = frontend
|
.PHONY = frontend
|
||||||
frontend: gitsync
|
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
|
.PHONY = backend
|
||||||
backend: gitsync
|
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
|
.PHONY = database
|
||||||
database: gitsync
|
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
|
.PHONY = keycloak
|
||||||
keycloak:
|
keycloak:
|
||||||
|
|||||||
Reference in New Issue
Block a user