forked from flashbots/suapp-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
37 lines (36 loc) · 897 Bytes
/
docker-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
version: "3.8"
services:
suave-mevm:
image: flashbots/suave-geth:latest
command:
- --suave.dev
- --http.addr=0.0.0.0
- --suave.eth.remote_endpoint=http://suave-enabled-chain:8545
- --suave.eth.external-whitelist=*
depends_on:
- suave-enabled-chain
ports:
- 8545:8545
networks:
- suave-net
suave-enabled-chain:
image: flashbots/suave-execution-geth:latest
command:
- --dev
- --dev.gaslimit=30000000
- --http
- --http.addr=0.0.0.0
- --http.vhosts=*
- --http.corsdomain=*
- --keystore=/keystore/keystore
- --unlock=0xB5fEAfbDD752ad52Afb7e1bD2E40432A485bBB7F
- --password=/keystore/password.txt
- --allow-insecure-unlock
volumes:
- ./suave-enabled-node-keystore:/keystore
ports:
- 8555:8545
networks:
- suave-net
networks:
suave-net: