We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22e8a45 commit 3c4d12fCopy full SHA for 3c4d12f
README_ESPRESSO.md
@@ -33,6 +33,12 @@ Provide Docker with the PAT.
33
> echo $CR_PAT | docker login ghcr.io -u USERNAME --password-stdin
34
```
35
36
+Run docker as a non root user:
37
+```console
38
+> sudo add group docker
39
+> sudo usermod -aG docker $USER
40
+```
41
+
42
### Run the tests
43
44
Run the Espresso smoke tests:
justfile
@@ -9,6 +9,7 @@ devnet-tests: build-devnet
9
go test -timeout 30m -p 1 -count 1 -v ./espresso/devnet-tests/...
10
11
build-devnet: compile-contracts
12
+ rm -Rf espresso/deployment
13
(cd op-deployer && just)
14
(cd espresso && ./scripts/prepare-allocs.sh && docker compose build)
15
0 commit comments