Skip to content

Commit 3c4d12f

Browse files
Ensures that the deployment files are deleted before building a new devnet. Update README_ESPRESSO.md to remind running docker as a non root user.
1 parent 22e8a45 commit 3c4d12f

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

README_ESPRESSO.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@ Provide Docker with the PAT.
3333
> echo $CR_PAT | docker login ghcr.io -u USERNAME --password-stdin
3434
```
3535

36+
Run docker as a non root user:
37+
```console
38+
> sudo add group docker
39+
> sudo usermod -aG docker $USER
40+
```
41+
3642
### Run the tests
3743

3844
Run the Espresso smoke tests:

justfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ devnet-tests: build-devnet
99
go test -timeout 30m -p 1 -count 1 -v ./espresso/devnet-tests/...
1010

1111
build-devnet: compile-contracts
12+
rm -Rf espresso/deployment
1213
(cd op-deployer && just)
1314
(cd espresso && ./scripts/prepare-allocs.sh && docker compose build)
1415

0 commit comments

Comments
 (0)