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

Build for arm64 as well as amd64 #1066

Closed
wants to merge 1 commit into from
Closed
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
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,17 @@ to monitor the containers.

To start all containers (and rebuild any which may have changed):

> [!TIP]
> **Apple Silicon Users**
> You'll probably want to build your own version of the base images as well, as
> the ones we build are amd64 only, and so painfully slow on ARM devices. This
> is unlikely to be resolved until GitHub Actions has ARM runners.
>
> ```sh
> docker build -t ghcr.io/emfcamp/website-base -f ./docker/Dockerfile.base .
> docker build -t ghcr.io/emfcamp/website-base-dev -f ./docker/Dockerfile.base-dev .
> ```

```
docker compose build --parallel
docker compose up
Expand Down
Loading