forked from eth-educators/eth-docker
-
Notifications
You must be signed in to change notification settings - Fork 6
/
mev-boost.yml
34 lines (33 loc) · 857 Bytes
/
mev-boost.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
x-logging: &logging
logging:
driver: json-file
options:
max-size: 100m
max-file: "3"
tag: "{{.ImageName}}|{{.Name}}|{{.ImageFullID}}|{{.FullID}}"
services:
mev-boost:
restart: "unless-stopped"
build:
context: ./flashbots
dockerfile: ${MEV_DOCKERFILE}
args:
- BUILD_TARGET=${MEV_SRC_BUILD_TARGET:-develop}
- SRC_REPO=${MEV_SRC_REPO:-https://github.com/flashbots/mev-boost}
- DOCKER_TAG=${MEV_DOCKER_TAG:-latest}
- DOCKER_REPO=${MEV_DOCKER_REPO:-flashbots/mev-boost}
image: mev-boost:local
pull_policy: never
entrypoint:
- /app/mev-boost
- -addr
- 0.0.0.0:18550
- -${NETWORK}
- -relay-check
- -relays
- ${MEV_RELAYS}
- -min-bid
- ${MEV_MIN_BID:-0}
- -loglevel
- ${LOG_LEVEL}
<<: *logging