Skip to content

Commit

Permalink
Merge pull request elizaOS#87 from amadad/fix/docker-compose-amd64-pl…
Browse files Browse the repository at this point in the history
…atform

Fix/docker compose-image amd64 platform
  • Loading branch information
wtfsayo authored Jan 17, 2025
2 parents 93efd29 + 7a13901 commit cdd0c18
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ docker compose up
Make sure docker is running.

```bash
docker buildx build --platform linux/amd64 -t eliza-starter:v1 .
# The --load flag ensures the built image is available locally
docker buildx build --platform linux/amd64 -t eliza-starter:v1 --load .
```

#### Edit the docker-compose-image.yaml file with your environment variables
Expand Down
1 change: 1 addition & 0 deletions docker-compose-image.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
services:
eliza:
platform: linux/amd64
command: ["pnpm", "start", "--character=./characters/eliza.character.json"]
image: eliza-starter:v1
stdin_open: true
Expand Down

0 comments on commit cdd0c18

Please sign in to comment.