Skip to content

Commit

Permalink
add ARM word
Browse files Browse the repository at this point in the history
  • Loading branch information
syamsudotdev committed May 15, 2024
1 parent 2f21b65 commit 7380b2c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/src/pages/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ docker run --name monika \
monika -c https://domain.com/path/to/your/configuration.yml
```

**On Apple Silicon chip**, you need to pass `--platform linux/amd64` to docker.
**On ARM / Apple Silicon chip**, you need to pass `--platform linux/amd64` to docker.

Congratulations, you have successfully run Monika in your machine!

Expand Down
6 changes: 3 additions & 3 deletions docs/src/pages/tutorial/run-in-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Monika is available as a docker image. You can find the image in the docker hub
docker pull hyperjump/monika
```

## Running Monika on Apple Silicon
## Running Monika on ARM / Apple Silicon

Monika docker image only supports amd64 architecture, you have to pass `--platform linux/amd64` when using `hyperjump/monika` docker image

Expand All @@ -26,7 +26,7 @@ docker run --name monika --net=host -it hyperjump/monika:latest
# Or, if you prefer to run Monika in the background
docker run --name monika --net=host --detach hyperjump/monika:latest

# On Apple Silicon chip, pass --platform linux/amd64
# On ARM / Apple Silicon chip, pass --platform linux/amd64
docker run --name monika --net=host --platform linux/amd64 -it hyperjump/monika:latest
docker run --name monika --net=host --platform linux/amd64 --detach hyperjump/monika:latest
```
Expand Down Expand Up @@ -54,7 +54,7 @@ docker run --name monika_interactive \
-d hyperjump/monika:latest \
monika -c /config/myConfig.yml --prometheus 3001

# On Apple Silicon
# On ARM / Apple Silicon
docker run --name monika_interactive \
--net=host \
--platform linux/amd64 \
Expand Down

0 comments on commit 7380b2c

Please sign in to comment.