@@ -65,10 +65,73 @@ services:
6565 --metrics-address=0.0.0.0
6666 --metrics-port=5054
6767 --metrics-allow-origin="*"
68- --suggested-fee-recipient=${LIDO_EXECUTION_LAYER_REWARDS_ADDRESS:-0x388C818CA8B9251b393131C08a736A67ccB19297}
6968 ports :
7069 - ${CL_PORT_P2P:-9000}:9000 # P2P TCP+UDP
7170 volumes :
7271 - ./data/lighthouse:/opt/app/beacon # Keep data in lighthouse and not cl-lighthouse for backwards compatibility
7372 - ./jwt:/opt/jwt
7473 networks : [dvnode]
74+
75+ # _ _
76+ # | |_ ___| | ___ _
77+ # | __/ _ \ |/ / | | |
78+ # | || __/ <| |_| |
79+ # \__\___|_|\_\\__,_|
80+
81+ cl-teku :
82+ profiles : [cl-teku]
83+ image : consensys/teku:${VC_VERSION:-25.7.1}
84+ restart : unless-stopped
85+ labels :
86+ - " promtail-monitored=${CL_TEKU_PROMTAIL_MONITORED:-true}"
87+ command : |
88+ --network=${NETWORK}
89+ --checkpoint-sync-url=${LIGHTHOUSE_CHECKPOINT_SYNC_URL}
90+ --ee-endpoint=http://${EL}:8551
91+ --ee-jwt-secret-file=/jwt/jwt.hex
92+ --data-base-path=/opt/teku/data
93+ --builder-endpoint=http://${MEV}:18550
94+ --rest-api-enabled=true
95+ --rest-api-interface=0.0.0.0
96+ --rest-api-port=5052
97+ --rest-api-host-allowlist="*"
98+ --metrics-enabled=true
99+ --metrics-interface=0.0.0.0
100+ --metrics-port=5054
101+ --metrics-host-allowlist="*"
102+ volumes :
103+ - ./data/cl-teku:/opt/teku/data
104+ - ./jwt:/jwt:ro
105+ networks : [dvnode]
106+
107+ # _ _ _
108+ # | | ___ __| | ___ ___| |_ __ _ _ __
109+ # | |/ _ \ / _` |/ _ \/ __| __/ _` | '__|
110+ # | | (_) | (_| | __/\__ \ || (_| | |
111+ # |_|\___/ \__,_|\___||___/\__\__,_|_|
112+
113+ cl-lodestar :
114+ profiles : [cl-lodestar]
115+ image : chainsafe/lodestar:${VC_VERSION:-v1.33.0}
116+ restart : unless-stopped
117+ labels :
118+ - " promtail-monitored=${CL_LODESTAR_PROMTAIL_MONITORED:-true}"
119+ command : |
120+ beacon
121+ --network=${NETWORK}
122+ --checkpointSyncUrl=${LIGHTHOUSE_CHECKPOINT_SYNC_URL}
123+ --execution.urls=http://${EL}:8551
124+ --jwt-secret=/jwt/jwt.hex
125+ --dataDir=/opt/lodestar/data
126+ --builder
127+ --builder.url=http://${MEV}:18550
128+ --rest
129+ --rest.address=0.0.0.0
130+ --rest.port=5052
131+ --metrics
132+ --metrics.address=0.0.0.0
133+ --metrics.port=5054
134+ volumes :
135+ - ./data/cl-lodestar:/opt/lodestar/data
136+ - ./jwt:/jwt:ro
137+ networks : [dvnode]
0 commit comments