This commit is contained in:
Sebastian
2022-12-09 18:02:38 +01:00
parent 82cb2bdbde
commit 5d5a1c8146
2 changed files with 44 additions and 15 deletions

View File

@@ -7,22 +7,25 @@ services:
# HTTP server / GraphQL API
- 8545
ports:
- "30303:30303"
- "30303:30303/udp"
- "49545:49545"
- "49545:49545/udp"
command:
[
# Blockchain sync mode ("snap", "full" or "light")
"--syncmode=snap",
"--syncmode=snap",
"--port=49545"
# Megabytes of memory allocated to internal caching
"--cache=8192",
# Enable the WS-RPC server
"--ws",
"--ws",
"--ws.port=8545"
"--ws.addr=0.0.0.0",
# Enable the HTTP-RPC server
"--http",
"--http",
"--http.port=8545",
"--http.addr=0.0.0.0",
"--http.vhosts=*",
# Enable GraphQL on the HTTP-RPC server. Note that GraphQL can only be started if an HTTP server is started as well.
# Enable GraphQL on the HTTP-RPC server. Note that GraphQL can only be started if an HTTP server is started as well.
"--graphql",
"--graphql.vhosts=*",
# Enable metrics collection and reporting
@@ -57,5 +60,31 @@ services:
- "prometheus-scrape.job_name=geth-mainnet"
- "prometheus-scrape.metrics_path=/debug/metrics/prometheus"
prysm-mainnet:
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",
"--checkpoint-sync-url=https://mainnet-checkpoint-sync.stakely.io",
"--execution-endpoint=http://geth-mainnet:8551",
"--accept-terms-of-use"
]
networks:
- chains
volumes:
- "prysm-mainnet_data:/data"
- ".jwtsecret:/jwtsecret"
restart: unless-stopped
stop_grace_period: 1m
volumes:
geth-mainnet_data:
prysm-mainnet_data:
geth-mainnet_data: