You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Once you've pulled the latest image, you can run it using
13
21
14
22
```bash
15
23
# Run Monika in foreground
16
24
docker run --name monika --net=host -it hyperjump/monika:latest
17
25
18
26
# Or, if you prefer to run Monika in the background
19
27
docker run --name monika --net=host --detach hyperjump/monika:latest
28
+
29
+
# On ARM / Apple Silicon chip, pass --platform linux/amd64
30
+
docker run --name monika --net=host --platform linux/amd64 -it hyperjump/monika:latest
31
+
docker run --name monika --net=host --platform linux/amd64 --detach hyperjump/monika:latest
20
32
```
21
33
22
34
In the example above, we create a container from the hyperjump/monika base image naming it with`--name monika`, indicate we'll use the host machine's network configuration with `--net=host` and let it run in the backround using the `--detach` switch (or interactively with `-it`).
@@ -42,6 +54,13 @@ docker run --name monika_interactive \
0 commit comments