forked from ethDreamer/withdrawals-compose
-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
121 lines (121 loc) · 2.85 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
version: '3.4'
services:
bootnode:
build:
dockerfile: ./images/lighthouse.Dockerfile
expose:
- 4242/tcp
- 4242/udp
volumes:
- ./genesis_data:/data
- ./genesis_config:/config
- ./scripts:/scripts
entrypoint:
"/scripts/bootnode.sh"
depends_on:
genesis-generator:
condition: service_completed_successfully
genesis-generator:
image: ethpandaops/ethereum-genesis-generator:latest
entrypoint:
"/scripts/genesis_generator.sh"
volumes:
- ./scripts:/scripts
- ./genesis_data:/data
- ./validator_data:/validator_data
- ./genesis_config:/config
expose:
- 8000
beacon:
build:
dockerfile: ./images/lighthouse.Dockerfile
deploy:
# noinspection ComposeUnknownValues
replicas: ${NUMBER_OF_NODES}
expose:
- 5052
- 9000/tcp
- 9000/udp
volumes:
- ./scripts:/scripts
- ./genesis_data:/data
- ./genesis_config:/config
entrypoint:
"/scripts/beacon.sh"
depends_on:
bootnode:
condition: service_started
execution:
image: ethereum/client-go
deploy:
# noinspection ComposeUnknownValues
replicas: ${NUMBER_OF_NODES}
expose:
- 8545
- 8551
volumes:
- ./scripts:/scripts
- ./genesis_data:/data
- ./genesis_config:/config
entrypoint:
"/scripts/execution.sh"
depends_on:
genesis-generator:
condition: service_completed_successfully
validator:
build:
dockerfile: ./images/lighthouse.Dockerfile
env_file: ./genesis_config/values.env
deploy:
# noinspection ComposeUnknownValues
replicas: ${NUMBER_OF_NODES}
expose:
- 5052
volumes:
- ./scripts:/scripts
- ./genesis_data:/data
- ./validator_data:/validator_data
entrypoint:
"/scripts/validator.sh"
depends_on:
genesis-generator:
condition: service_completed_successfully
proxy:
image: seananderson33/json_rpc_snoop:capella
deploy:
# noinspection ComposeUnknownValues
replicas: ${NUMBER_OF_NODES}
entrypoint:
"/scripts/proxy.sh"
expose:
- 8551
volumes:
- ./scripts:/scripts
proxy-builder:
image: seananderson33/json_rpc_snoop:capella
deploy:
# noinspection ComposeUnknownValues
replicas: ${NUMBER_OF_NODES}
entrypoint:
"/scripts/proxy-builder.sh"
expose:
- 8650
volumes:
- ./scripts:/scripts
mock-relay:
build:
dockerfile: ./images/mock-relay.Dockerfile
deploy:
# noinspection ComposeUnknownValues
replicas: ${NUMBER_OF_NODES}
entrypoint:
"/scripts/mock-relay.sh"
expose:
- 8650
volumes:
- ./scripts:/scripts
- ./genesis_data:/data
- ./genesis_config:/config
depends_on:
beacon:
condition: service_started