Cheat Sheet
Ready-to-run commands for Orbinum, grouped by task.
Follow Logs
bash
cd $HOME/node-deploy/testnet/validator && docker compose logs -f --tail 100 orbinum-validatorContainer Status
bash
cd $HOME/node-deploy/testnet/validator && docker compose psRestart
Restarts the process with the arguments the container was created with - .env edits are not picked up.
bash
cd $HOME/node-deploy/testnet/validator && docker compose restart orbinum-validatorApply .env Changes
A plain restart ignores .env edits - the container has to be recreated.
bash
cd $HOME/node-deploy/testnet/validator && docker compose up -d --force-recreate orbinum-validatorStop
The container and its data stay; a stopped validator misses every slot it is given.
bash
cd $HOME/node-deploy/testnet/validator && docker compose stop orbinum-validatorStart Again
bash
cd $HOME/node-deploy/testnet/validator && docker compose up -d orbinum-validatorShow Running Arguments
What the live container really runs - docker compose config only shows what would be applied.
bash
docker inspect orbinum-validator --format '{{join .Config.Cmd " "}}'