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
Copy file name to clipboardExpand all lines: docs/cdk/get-started/quickstart-rollup.md
+85-19Lines changed: 85 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,14 +2,16 @@
2
2
comments: true
3
3
---
4
4
5
-
This quick start guide shows you how to deploy a CDK rollup (EVM compatible) environment on your local machine that sets up and runs the following components:
5
+
This quick start guide shows you how to deploy a CDK rollup (EVM compatible) environment on your local machine.
- The documentation describes standard deployments.
@@ -24,9 +26,28 @@ This quick start guide shows you how to deploy a CDK rollup (EVM compatible) env
24
26
- An AMD64 architecture system.
25
27
26
28
!!! warning
27
-
- Currently the executor/prover does not run on ARM-powered Macs.
29
+
- Some of the components aren't set up to run on MacOS. Please check the workaround. The explorers and the bridge service probably won't come up.
28
30
- For Windows users, WSL/WSL2 use is not recommended.
29
31
32
+
!!! tip "MacOS workaround"
33
+
You may see errors related to `amd64` such as:
34
+
35
+
```sh
36
+
⠇ zkevm-prover
37
+
no matching manifest for linux/arm64/v8 in the manifest list entries
38
+
make: ***[run] Error 18
39
+
```
40
+
41
+
If so, go to the `docker-compose.yml` file in the `test` directory, search for the component details - in this case `zkevm-prover`, and add the `platform: linux/amd64` environment variable under the `environment` variable (which you should also add if it is not there):
42
+
43
+
```sh
44
+
environment:
45
+
- EXPERIMENTAL_DOCKER_DESKTOP_FORCE_QEMU=1
46
+
platform: linux/amd64
47
+
```
48
+
49
+
You may find the explorer components affected similarly.
0 commit comments