-
Notifications
You must be signed in to change notification settings - Fork 12
/
compose.yaml
42 lines (39 loc) · 1.18 KB
/
compose.yaml
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
name: rollup
include:
- path: ./contracts/compose.anvil-stubs.yml # anvil stubs
# - path: ./contracts/compose.reth-stubs.yml # reth stubs
- path: ./avs-aggregator/compose.yml
- path: ./gasp-avs/compose.yml
- path: ./sequencer/compose.yml
- path: ./contracts/compose.yml
- path: ./updater/compose.yml
- path: ./ferry-deposit/compose.yml
- path: ./ferry-withdrawal/compose.yml
services:
node-alice:
image: mangatasolutions/rollup-node:${ROLLUP_NODE_VERSION}
pull_policy: always
command:
- --alith
- --chain=rollup-local-seq
- --base-path=/data
- --rpc-cors=all
- --unsafe-rpc-external
- --node-key=0000000000000000000000000000000000000000000000000000000000000001
- --pruning=archive
ports:
- 9944:9944
- 30333:30333
node-bob:
image: mangatasolutions/rollup-node:${ROLLUP_NODE_VERSION}
pull_policy: always
command:
- --baltathar
- --chain=rollup-local-seq
- --base-path=/data
- --rpc-cors=all
- --unsafe-rpc-external
- --bootnodes=/dns/node-alice/tcp/30333/p2p/12D3KooWEyoppNCUx8Yx66oV9fJnriXwCcXwDDUA2kj6vnc6iDEp
- --pruning=archive
ports:
- 9946:9944