fixes
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user