From dc2a0d3c72d1d23e8a7ebb79c3d00e22e8f8a263 Mon Sep 17 00:00:00 2001 From: are-ces <195810094+are-ces@users.noreply.github.com> Date: Wed, 19 Nov 2025 13:13:53 +0100 Subject: [PATCH] Updated docs for macos users --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a324b893c..0d10ac17a 100644 --- a/README.md +++ b/README.md @@ -595,6 +595,17 @@ podman compose up --build # Access llama-stack at http://localhost:8321 ``` +#### macOS (arm64) + +Emulation of platform amd64 will not work with `podman compose up --build` command. + +Instead run the docker command: + +```bash +# Start both services +docker compose up --build +``` + ### Llama-Stack as Library (Library Mode) When embedding llama-stack directly in the container, use the existing `Containerfile` directly (this will not build the llama stack service in a separate container). First modify the `lightspeed-stack.yaml` config to use llama stack in library mode. @@ -620,7 +631,7 @@ podman run \ my-lightspeed-core:latest ``` -For macosx users: +#### macOS ```bash podman run \ -p 8080:8080 \