forked from ethereum-optimism/optimism-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.build.yml
More file actions
43 lines (37 loc) · 1.03 KB
/
docker-compose.build.yml
File metadata and controls
43 lines (37 loc) · 1.03 KB
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
37
38
39
40
41
42
43
version: "3"
volumes:
go-modules: # Define a volume for Go modules
services:
integration_tests:
image: ethereumoptimism/builder:latest
volumes:
- ./:/mnt
working_dir: /mnt/integration-tests
entrypoint: ["sh", "-c", "yarn && yarn build"]
deployer:
image: ethereumoptimism/builder:latest
volumes:
- ./:/mnt
working_dir: /mnt/contracts
entrypoint: ["sh", "-c", "yarn && yarn build"]
geth_l2:
image: ethereumoptimism/builder:latest
volumes:
- ./:/mnt
- go-modules:/go/pkg/mod # Put modules cache into a separate volume
ports:
- 8545:8545
entrypoint: ["make", "geth"]
working_dir: /mnt/go-ethereum
batch_submitter:
image: ethereumoptimism/builder:latest
volumes:
- ./:/mnt
working_dir: /mnt/batch-submitter
entrypoint: ["sh", "-c", "yarn && yarn build"]
data_transport_layer:
image: ethereumoptimism/builder:latest
volumes:
- ./:/mnt
working_dir: /mnt/data-transport-layer
entrypoint: ["sh", "-c", "yarn && yarn build"]