Skip to content

Commit

Permalink
Update running-locally.md
Browse files Browse the repository at this point in the history
Signed-off-by: heidongxianhua <[email protected]>
  • Loading branch information
heidongxianhua authored Apr 2, 2024
1 parent 56b28be commit 3162927
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/running-locally.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,17 @@ If you made changes to the executor, you need to build the image:
make argoexec-image
```

Or you can use parameters to compile images that support specific platforms or multiple platforms with `TARGET_PLATFORM`:

```bash
# only support arm64
make argoexec-image TARGET_PLATFORM=linux/arm64
# only support amd64
make argoexec-image TARGET_PLATFORM=linux/amd64
# support arm64 and amd64
make argoexec-image TARGET_PLATFORM=linux/arm64,linux/amd64
```

To also start the API on <http://localhost:2746>:

```bash
Expand Down

0 comments on commit 3162927

Please sign in to comment.