Skip to content
This repository was archived by the owner on Dec 13, 2023. It is now read-only.

Add docker --platform note #1445

Merged
merged 2 commits into from
Aug 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions 3.10/install-with-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@ In order to start an ArangoDB instance, run:
docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 -d --name arangodb-instance arangodb
```

Note that on macOS/ARM, the default chosen processor architecture may not be
the best choice.
To override this, you can pass the `--platform` flag to the command, specifying
the operating system and architecture you want to build for:

```
docker run --platform linux/arm64/v8 -p 8529:8529 -e ARANGO_ROOT_PASSWORD=1 arangodb-instance arangodb
```

This creates and launches the ArangoDB Docker instance as a background process.
The identifier of the process is printed. By default, ArangoDB listens on port
`8529` for requests and the image includes `EXPOSE 8529`. If you link an
Expand Down
9 changes: 9 additions & 0 deletions 3.11/install-with-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@ In order to start an ArangoDB instance, run:
docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 -d --name arangodb-instance arangodb
```

Note that on macOS/ARM, the default chosen processor architecture may not be
the best choice.
To override this, you can pass the `--platform` flag to the command, specifying
the operating system and architecture you want to build for:

```
docker run --platform linux/arm64/v8 -p 8529:8529 -e ARANGO_ROOT_PASSWORD=1 arangodb-instance arangodb
```

This creates and launches the ArangoDB Docker instance as a background process.
The identifier of the process is printed. By default, ArangoDB listens on port
`8529` for requests and the image includes `EXPOSE 8529`. If you link an
Expand Down
9 changes: 9 additions & 0 deletions 3.12/install-with-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@ In order to start an ArangoDB instance, run:
docker run -e ARANGO_RANDOM_ROOT_PASSWORD=1 -d --name arangodb-instance arangodb
```

Note that on macOS/ARM, the default chosen processor architecture may not be
the best choice.
To override this, you can pass the `--platform` flag to the command, specifying
the operating system and architecture you want to build for:

```
docker run --platform linux/arm64/v8 -p 8529:8529 -e ARANGO_ROOT_PASSWORD=1 arangodb-instance arangodb
```

This creates and launches the ArangoDB Docker instance as a background process.
The identifier of the process is printed. By default, ArangoDB listens on port
`8529` for requests and the image includes `EXPOSE 8529`. If you link an
Expand Down