Upgrade / Re-deploy
Upgrade flow (single path):
- Re-run
make install-verifier-service(rebuilds the Docker image and redeploys the container) - Verify the deployment
Step 1: Re-deploy
cd ~/solana-governance
make install-verifier-serviceStep 2: Configuration (prompted during install)
When prompted during the make run, enter:
During the run, you will be prompted to select mainnet vs testnet, then enter:
OPERATOR_PUBKEY,METRICS_AUTH_TOKENPORT_HOST(example:8000)
Persistent data stays mounted at /srv/verifier/data, so upgrades should not require re-uploading everything.
Verify
Replace <PORT_HOST> with your PORT_HOST:
sudo docker ps
curl -i http://127.0.0.1:<PORT_HOST>/healthz
curl -s http://127.0.0.1:<PORT_HOST>/versionLast updated on