-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
45 lines (44 loc) · 911 Bytes
/
docker-compose.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
version: '2'
services:
beacon:
image: ethdreamer/lighthouse:capella
expose:
- 5052
volumes:
- ./shared:/shared
entrypoint:
"/shared/scripts/beacon.sh"
execution:
image: ethereum/client-go
expose:
- 8545
- 8551
volumes:
- ./shared:/shared
entrypoint:
"/shared/scripts/execution.sh"
validator:
image: ethdreamer/lighthouse:capella
expose:
- 5052
volumes:
- ./shared:/shared
entrypoint:
"/shared/scripts/validator.sh"
depends_on:
- beacon
- execution
proxy:
image: ethdreamer/json_rpc_snoop:latest
entrypoint: >
/bin/bash -c "
./json_rpc_snoop -p 8551 -b 0.0.0.0 http://execution:8551
"
expose:
- 8551
genstate:
image: ethdreamer/prysmctl:capella
volumes:
- ./shared:/shared
entrypoint:
"/shared/scripts/genstate.sh"