-
Notifications
You must be signed in to change notification settings - Fork 5
/
compose.yaml
31 lines (30 loc) · 948 Bytes
/
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
services:
updater-cli-args:
image: eigenlayer-rewards-updater:latest
build:
dockerfile: Dockerfile
networks:
- eigenlabs-rewards-updater
command:
- "updater"
- "--debug=true"
- "--enable-statsd=false"
- "--enable-tracing=false"
- "--environment=testnet"
- "--network=holesky"
- "--rpc-url=https://ethereum-holesky-rpc.publicnode.com"
- "--proof-store-base-url=https://eigenlabs-rewards-testnet-holesky.s3.amazonaws.com"
- "--private-key=<ethereum private key (hex string, not prefixed with 0x)>"
- "--rewards-coordinator-address=0xAcc1fb458a1317E886dB376Fc8141540537E68fE"
- "--pushgateway-enabled=true"
- "--pushgateway-url=http://pushgateway:9091"
pushgateway:
image: prom/pushgateway:latest
networks:
- eigenlabs-rewards-updater
expose:
- "9091"
ports:
- "9091:9091"
networks:
eigenlabs-rewards-updater: