Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 1.53 KB

LOCALDOCKER.md

File metadata and controls

51 lines (38 loc) · 1.53 KB

Modifying a Local Stellar Quickstart node

Native docker commands for additional customization options

docker run --rm -it \
    -p 8000:8000 \
    -p 6061:6061 \
    --name stellar \
    stellar/quickstart:testing \
    --standalone \
    --enable-soroban-rpc \
    --enable-stellar-rpc-admin-endpoint \
    --enable-soroban-diagnostic-events \
    --limits unlimited \
    --logs

Customize resource limits

docker exec -it stellar /bin/bash

Upgrading Soroban Settings

Upgrading Soroban settings

curl -s "127.0.0.1:11626/sorobaninfo?format=upgrade_xdr"
stellar-xdr decode --type ConfigUpgradeSet - - output json-formatted
curl -s "127.0.0.1:11626/upgrades?mode=set&upgradetime=1970-01-01T00:00:00Z&[basefee=NUM]&[basereserve=NUM]&[maxtxsetsize=NUM]&[protocolversion=22]&[configupgradesetkey=ConfigUpgradeSetKey]"