Skip to content

Commit 2901aef

Browse files
committed
use default for op-batcher and tee for op-batcher-tee
1 parent 30d4a4e commit 2901aef

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

README_ESPRESSO.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -299,13 +299,13 @@ docker compose down -v --remove-orphans
299299
./scripts/batcher-enclave-image.sh
300300
```
301301

302-
* Build and start all services in the background. If you're not running on a machine with AWS Nitro Enclaves enabled, use the `nontee` profile instead.
302+
* Build and start all services in the background.
303303
```console
304304
docker compose up --build -d
305305
```
306-
or
306+
If you're on a machine with AWS Nitro Enclaves enabled, use the `tee` profile instead to start the enclave batcher.
307307
```console
308-
docker compose up --build -d --profile nontee
308+
docker compose up --build -d --profile tee
309309
```
310310

311311
* Run the services and check the log.

espresso/docker-compose.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -266,8 +266,8 @@ services:
266266
- --l1.epoch-poll-interval=1s
267267
restart: "no"
268268

269-
op-batcher-non-tee:
270-
profiles: ["nontee"]
269+
op-batcher:
270+
profiles: ["default"]
271271
build:
272272
context: ../
273273
dockerfile: espresso/docker/op-stack/Dockerfile
@@ -303,7 +303,8 @@ services:
303303
- --max-channel-duration=1
304304
- --target-num-frames=1
305305

306-
op-batcher:
306+
op-batcher-tee:
307+
profiles: ["tee"]
307308
image: ${OP_BATCHER_ENCLAVE_IMAGE:-op-batcher-enclaver:tests}
308309
depends_on:
309310
l1-geth:

0 commit comments

Comments
 (0)