Skip to content

Commit

Permalink
docs(readme): specify Docker platform
Browse files Browse the repository at this point in the history
  • Loading branch information
Pinjasaur committed Jul 14, 2024
1 parent 823973d commit b410e2e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ Check out the [docs] or [bic-example] repository.
Build (local develop):

```bash
docker build . -t bic:local
docker build --platform linux/amd64 . -t bic:local
```

Run (local develop) with [bic-example]:

```bash
docker run --rm -it -v $PWD/../bic-example:/src -v $PWD:/app --entrypoint bash bic:local
docker run --platform linux/amd64 --rm -it -v $PWD/../bic-example:/src -v $PWD:/app --entrypoint bash bic:local
```

Run (just build) with [bic-example]:

```bash
docker run --rm -v $PWD/../bic-example:/src bic:local
docker run --platform linux/amd64 --rm -v $PWD/../bic-example:/src bic:local
```

Run using [nix flakes]
Expand Down

0 comments on commit b410e2e

Please sign in to comment.