@@ -81,7 +81,7 @@ services:
8181 l1-genesis :
8282 condition : service_completed_successfully
8383 healthcheck :
84- test : [ "CMD", "curl", "-f", "http://localhost:${L1_HTTP_PORT}" ]
84+ test : ["CMD", "curl", "-f", "http://localhost:${L1_HTTP_PORT}"]
8585 interval : 3s
8686 timeout : 2s
8787 retries : 40
@@ -174,7 +174,7 @@ services:
174174 dockerfile : espresso/docker/op-stack/Dockerfile
175175 target : op-node-target
176176 healthcheck :
177- test : [ "CMD", "curl", "-f", "http://localhost:${ROLLUP_PORT}" ]
177+ test : ["CMD", "curl", "-f", "http://localhost:${ROLLUP_PORT}"]
178178 interval : 3s
179179 timeout : 2s
180180 retries : 40
@@ -215,7 +215,7 @@ services:
215215 dockerfile : espresso/docker/op-stack/Dockerfile
216216 target : op-node-target
217217 healthcheck :
218- test : [ "CMD", "curl", "-f", "http://localhost:${VERIFIER_PORT}" ]
218+ test : ["CMD", "curl", "-f", "http://localhost:${VERIFIER_PORT}"]
219219 interval : 3s
220220 timeout : 2s
221221 retries : 40
@@ -252,7 +252,7 @@ services:
252252 dockerfile : espresso/docker/op-stack/Dockerfile
253253 target : op-node-target
254254 healthcheck :
255- test : [ "CMD", "curl", "-f", "http://localhost:${CAFF_PORT}" ]
255+ test : ["CMD", "curl", "-f", "http://localhost:${CAFF_PORT}"]
256256 interval : 3s
257257 timeout : 2s
258258 retries : 40
@@ -297,7 +297,7 @@ services:
297297 restart : " no"
298298
299299 op-batcher :
300- profiles : [ "default" ]
300+ profiles : ["default"]
301301 build :
302302 context : ../
303303 dockerfile : espresso/docker/op-stack/Dockerfile
@@ -327,7 +327,7 @@ services:
327327 - op-batcher
328328 - --espresso-light-client-addr=0x703848f4c85f18e3acd8196c8ec91eb0b7bd0797
329329 - --testing-espresso-batcher-private-key=${OP_TESTING_BATCHER_PRIVATE_KEY:-$OPERATOR_PRIVATE_KEY}
330- - --private-key=${OP_BATCHER_PRIVATE_KEY:-$OPERATOR_PRIVATE_KEY }
330+ - --private-key=${OP_BATCHER_PRIVATE_KEY:-$OP_BATCHER_PRIVATE_KEY }
331331 - --throttle-threshold=0
332332 - --max-channel-duration=2
333333 - --target-num-frames=1
@@ -348,14 +348,18 @@ services:
348348 - proxy
349349
350350 op-batcher-tee :
351- profiles : [ "tee" ]
351+ profiles : ["tee"]
352352 build :
353353 context : ../
354354 dockerfile : espresso/docker/op-stack/Dockerfile
355355 target : op-batcher-enclave-target
356356 image : op-batcher-tee:espresso
357357 healthcheck :
358- test : [ "CMD-SHELL", "test -f /tmp/enclave-tools.pid && kill -0 $(cat /tmp/enclave-tools.pid) 2>/dev/null || exit 1" ]
358+ test :
359+ [
360+ " CMD-SHELL" ,
361+ " test -f /tmp/enclave-tools.pid && kill -0 $(cat /tmp/enclave-tools.pid) 2>/dev/null || exit 1" ,
362+ ]
359363 interval : 30s
360364 timeout : 10s
361365 retries : 3
@@ -403,7 +407,7 @@ services:
403407 /source/espresso/docker/op-batcher-tee/run-enclave.sh
404408
405409 op-proposer :
406- profiles : [ "default" ]
410+ profiles : ["default"]
407411 build :
408412 context : ../
409413 dockerfile : espresso/docker/op-stack/Dockerfile
@@ -425,10 +429,10 @@ services:
425429 OP_PROPOSER_PROPOSAL_INTERVAL : 6s
426430 OP_PROPOSER_MNEMONIC : " test test test test test test test test test test test junk"
427431 OP_PROPOSER_HD_PATH : " m/44'/60'/0'/0/1"
428- OP_PROPOSER_GAME_TYPE : ' 1 '
432+ OP_PROPOSER_GAME_TYPE : " 1 "
429433
430434 op-challenger :
431- profiles : [ "default" ]
435+ profiles : ["default"]
432436 build :
433437 context : ../
434438 dockerfile : espresso/docker/op-stack/Dockerfile
0 commit comments