forked from ethereum-optimism/optimism-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (29 loc) · 784 Bytes
/
docker-compose.yml
File metadata and controls
36 lines (29 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
version: "3"
services:
integration_tests:
image: ethereumoptimism/integration-tests:${INTEGRATION_TESTS_TAG:-latest}
environment:
- "PKGS=${PKGS}"
l1_chain:
image: ethereumoptimism/hardhat:${L1_CHAIN_TAG:-latest}
ports:
- 9545:9545
geth_l2:
image: ethereumoptimism/go-ethereum:${GETH_L2_TAG:-latest}
volumes:
- geth:/l2-node/l2:rw
ports:
- 8545:8545
- 8546:8546
batch_submitter:
image: ethereumoptimism/batch-submitter:${BATCH_SUBMITTER_TAG:-latest}
data_transport_layer:
image: ethereumoptimism/data-transport-layer:${DATA_TRANSPORT_LAYER_TAG:-latest}
ports:
- 7878:7878
deployer:
image: ethereumoptimism/deployer:${DEPLOYER_TAG:-latest}
ports:
- 8080:8080
volumes:
geth: