Skip to content

Commit

Permalink
chore: rebase all succinct specific changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mattstam committed Jul 18, 2024
1 parent 38b109e commit 0b5a159
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
4 changes: 2 additions & 2 deletions default.env
Original file line number Diff line number Diff line change
Expand Up @@ -200,11 +200,11 @@ TEKU_DOCKERFILE=Dockerfile.binary

# Lighthouse
# SRC build target can be a tag, a branch, or a pr as "pr-ID"
LH_SRC_BUILD_TARGET=stable
LH_SRC_BUILD_TARGET=unstable
LH_SRC_REPO=https://github.com/sigp/lighthouse
LH_DOCKER_TAG=latest
LH_DOCKER_REPO=sigp/lighthouse
LH_DOCKERFILE=Dockerfile.binary
LH_DOCKERFILE=Dockerfile.source

# Lighthouse Siren
SIREN_DOCKER_TAG=latest
Expand Down
2 changes: 1 addition & 1 deletion lighthouse-cl-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ services:
- BEACON_STATS_API=${BEACON_STATS_API}
- BEACON_STATS_MACHINE=${BEACON_STATS_MACHINE}
- CL_EXTRAS=${CL_EXTRAS:-}
- ARCHIVE_NODE=${ARCHIVE_NODE:-false}
- ARCHIVE_NODE=${ARCHIVE_NODE:-true}
- IPV6=${IPV6:-false}
- CL_P2P_PORT=${CL_P2P_PORT:-9000}
- CL_QUIC_PORT=${CL_QUIC_PORT:-9001}
Expand Down
5 changes: 2 additions & 3 deletions lighthouse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ x-logging: &logging
options:
max-size: 100m
max-file: "3"
tag: '{{.ImageName}}|{{.Name}}|{{.ImageFullID}}|{{.FullID}}'

tag: "{{.ImageName}}|{{.Name}}|{{.ImageFullID}}|{{.FullID}}"

x-build: &lh-build
context: ./lighthouse
Expand Down Expand Up @@ -38,7 +37,7 @@ services:
- BEACON_STATS_API=${BEACON_STATS_API}
- BEACON_STATS_MACHINE=${BEACON_STATS_MACHINE}
- CL_EXTRAS=${CL_EXTRAS:-}
- ARCHIVE_NODE=${ARCHIVE_NODE:-false}
- ARCHIVE_NODE=${ARCHIVE_NODE:-true}
- IPV6=${IPV6:-false}
- CL_P2P_PORT=${CL_P2P_PORT:-9000}
- CL_QUIC_PORT=${CL_QUIC_PORT:-9001}
Expand Down
2 changes: 1 addition & 1 deletion lighthouse/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ if [ -n "${RAPID_SYNC_URL}" ]; then
echo "Checkpoint sync enabled"
if [ "${ARCHIVE_NODE}" = "true" ]; then
echo "Lighthouse archive node without pruning"
__prune="--reconstruct-historic-states --genesis-backfill"
__prune="--reconstruct-historic-states"
else
__prune=""
fi
Expand Down
8 changes: 6 additions & 2 deletions reth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ x-logging: &logging
options:
max-size: 100m
max-file: "3"
tag: '{{.ImageName}}|{{.Name}}|{{.ImageFullID}}|{{.FullID}}'
tag: "{{.ImageName}}|{{.Name}}|{{.ImageFullID}}|{{.FullID}}"

services:
execution:
Expand Down Expand Up @@ -70,12 +70,16 @@ services:
- 0.0.0.0
- --http.port
- ${EL_RPC_PORT:-8545}
- --http.api
- web3,eth,net,debug,trace,txpool,rpc
- --http.corsdomain=*
- --ws
- --ws.addr
- 0.0.0.0
- --ws.port
- ${EL_WS_PORT:-8546}
- --ws.api
- web3,eth,net,debug,trace,txpool,rpc
- --ws.origins=*
- --authrpc.addr
- 0.0.0.0
Expand All @@ -97,7 +101,7 @@ services:
restart: "no"
volumes:
- reth-el-data:/var/lib/reth
entrypoint: ["/bin/sh","-c"]
entrypoint: ["/bin/sh", "-c"]
command: /bin/sh

volumes:
Expand Down

0 comments on commit 0b5a159

Please sign in to comment.