Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix release #14

Merged
merged 4 commits into from
Nov 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading