-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmev-boost-mock.yml
54 lines (53 loc) · 1.03 KB
/
mev-boost-mock.yml
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
44
45
46
47
48
49
50
51
52
53
version: "3"
services:
consensus-bn:
environment:
- MEVBOOST_ENABLED=true
consensus-vc:
environment:
- MEVBOOST_ENABLED=true
mev-boost:
environment:
- MOCK_PROXY_ENABLED=true
- ETH2_TESTNET
build: ./mev-boost/build
expose:
- 8560
volumes:
- ./mev-boost/run:/home/boost/run
- ./shared:/shared
depends_on:
- execution
- consensus-bn
boost-proxy:
build: ./proxy
environment:
- MEVBOOST_ENABLED=true
expose:
- 8560
volumes:
- ./proxy/run:/home/json_rpc_snoop/run
depends_on:
- mev-boost
mock-relay:
build: ./relay/build
environment:
- MOCK_PROXY_ENABLED=true
expose:
- 8560
volumes:
- ./relay/run:/home/relay/run
- ./shared:/shared
depends_on:
- execution
- consensus-bn
mock-proxy:
build: ./proxy
environment:
- RELAY_ENABLED=true
expose:
- 8560
volumes:
- ./proxy/run:/home/json_rpc_snoop/run
depends_on:
- mock-relay