From 3dbdefe7155667ed9eef6af7f9b136739c803595 Mon Sep 17 00:00:00 2001 From: cventastic Date: Mon, 12 Sep 2022 17:57:32 +0200 Subject: [PATCH] add prysm.yml --- prysm.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 prysm.yml diff --git a/prysm.yml b/prysm.yml new file mode 100644 index 00000000..a29b6d80 --- /dev/null +++ b/prysm.yml @@ -0,0 +1,29 @@ +version: '3.1' + +services: + prysm: + image: prysmaticlabs/prysm-beacon-chain:stable + ports: + - "127.0.0.1:3500:3500" + - "13000:13000" + - "12000:12000/udp" + command: + [ + "--datadir=/data", + "--jwt-secret=/jwtsecret", + "--rpc-host=0.0.0.0", + "--grpc-gateway-host=0.0.0.0", + "--monitoring-host=0.0.0.0", + "--execution-endpoint=$EXECUTION_CLIENT" + ] + networks: + - chains + volumes: + - "prysm_data:/data" + - ".jwtsecret:/jwtsecret" + restart: unless-stopped + stop_grace_period: 1m + + +volumes: + prysm_data: \ No newline at end of file