diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 2c772e3..1ba517f 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -41,5 +41,5 @@ template: | ## Install from the command line ```sh - DEMOAPP_BACKEND_IMAGE="ghcr.io/$OWNER/$REPOSITORY:v$RESOLVED_VERSION" docker compose --project-directory deploy/docker-compose up + DEMOAPP_FRONTEND_IMAGE="ghcr.io/$OWNER/$REPOSITORY:v$RESOLVED_VERSION" docker compose --project-directory deploy/docker-compose up ``` diff --git a/deploy/docker-compose/compose.yaml b/deploy/docker-compose/compose.yaml index 201603e..32f3a54 100644 --- a/deploy/docker-compose/compose.yaml +++ b/deploy/docker-compose/compose.yaml @@ -24,11 +24,11 @@ services: depends_on: demoapp-backend: condition: service_healthy # healthy status is indicated by `healthcheck` keyword - # image: ${DEMOAPP_FRONTEND_IMAGE} # use image specified in .env file + image: ${DEMOAPP_FRONTEND_IMAGE} # use image specified in .env file # Build image from Containerfile - build: - context: ../../ - dockerfile: Containerfile + # build: + # context: ../../ + # dockerfile: Containerfile environment: REACT_APP_DEMOAPP_BACKEND_URL: "${DEMOAPP_BACKEND_URL}" # Override default demoapp-backend url healthcheck: diff --git a/docker-bake.hcl b/docker-bake.hcl index cad772c..3083d88 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -16,8 +16,8 @@ target "build" { target "platforms" { // Set target platforms for multi-platform builds https://docs.docker.com/build/bake/reference/#targetplatforms platforms = [ - "linux/amd64", - "linux/arm64" + "linux/amd64" + // "linux/arm64" // build gets stuck check dependencies ] }