Runner is a helper container that launches all the necessary services for a validator to run.
- Get a linux host, recommended:
- 8GB RAM
- 4x2.3GHz CPU
- 60GB SSD
- (No GPU is used by validators)
- install
docker
anddocker-compose
, e.g.apt-get install -y docker.io docker-compose
(has been tested on docker24.0.5
and docker-compose1.29.2
). - choose a directory on your host to save two text files, e.g
/home/josephus/compute_horde_validator
, contents coming in following points - save the following contents as
docker-compose.yml
, e.g./home/josephus/compute_horde_validator/docker-compose.yml
version: '3.7'
services:
validator-runner:
image: backenddevelopersltd/compute-horde-validator-runner:v0-latest
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- "$HOME/.bittensor/wallets:/root/.bittensor/wallets"
- ./.env:/root/validator/.env
labels:
- "com.centurylinklabs.watchtower.enable=true"
watchtower:
image: containrrr/watchtower:latest
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
command: --interval 60 --cleanup --label-enable
- save the following contents as
.env
, e.g./home/josephus/compute_horde_validator/.env
(read the comments, they contain hints as to what values to give to these variables):
# generate one for yourself, e.g. `python3 -c 'import random; import string; print("".join(random.SystemRandom().choice(string.ascii_letters + string.digits) for _ in range(50)))'`
SECRET_KEY=
# generate one for yourself, e.g. `python3 -c 'import random; import string; print("".join(random.SystemRandom().choice(string.ascii_letters + string.digits) for _ in range(15)))'`
# don't change this starting the validator for the first time
POSTGRES_PASSWORD=
BITTENSOR_NETUID=12
# network specification has the same syntax as `btcli --subtensor.network ... `
# so you can use "finney", "test", "186.12.13.150:9944" etc. but if you want to use a subtensor run on the same host,
# then due to docker networking, use the example provided below
BITTENSOR_NETWORK=172.17.0.1:9944
BITTENSOR_WALLET_NAME=validator
BITTENSOR_WALLET_HOTKEY_NAME=default
HOST_WALLET_DIR=/home/josephus/.bittensor/wallets
- run
docker-compose up -d
in the directory containing yourdocker-compose.yml
, e.g./home/josephus/compute_horde_validator/
- done. complete.
If you make any changes to .env
, be it changing values, adding new ones or removing them, you need to stop all
services and star them again:
docker-compose down
docker-compose up -d
you may see an error like:
ERROR: error while removing network: network ... has active endpoints
it is inconsequential, and we will remove it soon.
The backenddevelopersltd/compute-horde-validator-runner
docker image contains a docker-compose.yml
file with all the necessary services to run a validator.
A watchtower
container that will automatically apply updates for containers.
backenddevelopersltd/compute-horde-validator-runner
|__postgres
|__redis
|__worker
|__...
|__watchtower
The watchtower
container may update:
- core services in
docker-compose.yml
(likeworker
), and backenddevelopersltd/compute-horde-validator-runner
container itself, which will automatically update ALL the other containers.