Skip to content

Commit

Permalink
Merge pull request #14 from paul-gilber/fix-release
Browse files Browse the repository at this point in the history
Fix release
  • Loading branch information
paul-gilber committed Nov 4, 2023
2 parents 08bb5eb + ce2ba52 commit 1f8a634
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
8 changes: 4 additions & 4 deletions deploy/docker-compose/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -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
]
}

Expand Down

0 comments on commit 1f8a634

Please sign in to comment.