Skip to content

Commit

Permalink
Do not use docker buildx during make build-image, fails if buildx is …
Browse files Browse the repository at this point in the history
…active
  • Loading branch information
groldan committed Oct 17, 2024
1 parent 0c985bb commit 4d7d6a8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,22 @@ test:

build-base-images:
./mvnw clean package -f src/apps/base-images -DskipTests -T4 && \
COMPOSE_DOCKER_CLI_BUILD=1 \
DOCKER_BUILDKIT=1 \
COMPOSE_DOCKER_CLI_BUILD=0 \
DOCKER_BUILDKIT=0 \
TAG=$(TAG) \
docker compose -f docker-build/base-images.yml build

build-image-infrastructure:
./mvnw clean package -f src/apps/infrastructure -DskipTests -T4 && \
COMPOSE_DOCKER_CLI_BUILD=1 \
DOCKER_BUILDKIT=1 \
COMPOSE_DOCKER_CLI_BUILD=0 \
DOCKER_BUILDKIT=0 \
TAG=$(TAG) \
docker compose -f docker-build/infrastructure.yml build

build-image-geoserver:
./mvnw clean package -f src/apps/geoserver -DskipTests -T4 && \
COMPOSE_DOCKER_CLI_BUILD=1 \
DOCKER_BUILDKIT=1 \
COMPOSE_DOCKER_CLI_BUILD=0 \
DOCKER_BUILDKIT=0 \
TAG=$(TAG) \
docker compose -f docker-build/geoserver.yml build

Expand Down

0 comments on commit 4d7d6a8

Please sign in to comment.