lssa/bedrock/scripts/run_logos_blockchain_node.sh

18 lines
517 B
Bash
Raw Normal View History

#!/bin/sh
set -e
export CFG_FILE_PATH="/config.yaml" \
CFG_SERVER_ADDR="http://cfgsync:4400" \
CFG_HOST_IP=$(hostname -i) \
CFG_HOST_IDENTIFIER="validator-$(hostname -i)" \
2026-04-08 20:37:51 +02:00
LOG_LEVEL="DEBUG" \
POL_PROOF_DEV_MODE=true
2026-04-08 23:33:12 +02:00
/usr/bin/logos-blockchain-cfgsync-client
# Download deployment settings generated by cfgsync
curl -sf "${CFG_SERVER_ADDR}/deployment-settings" -o /deployment-settings.yaml
exec /usr/bin/logos-blockchain-node /config.yaml --deployment /deployment-settings.yaml