Categorygithub.com/voinetwork/voi-node
repository
3.25.0+incompatible
Repository: https://github.com/voinetwork/voi-node.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

Voi Node

This project contains a simple Docker image and associated golang tooling to run a Voi node.

Node types currently supported

  • Relay node
  • Archiver node

Node type will default to 'relay' if not specified. Node configuration will use testnet defaults unless otherwise provided at image build time.

Running with a pre-defined network

To run a Voi node with a pre-defined network, you can use the following command:

docker run -e VOINETWORK_NETWORK=testnet ghcr.io/voi-network/voi-node:latest

Running with a custom network

docker run -e VOINETWORK_NETWORK=custom_name -e VOINETWORK_GENESIS=custom_url ghcr.io/voi-network/voi-node:latest

Running with a specific profile

Relay node

docker run -e VOINETWORK_NETWORK=custom_name -e VOINETWORK_GENESIS=custom_url -e VOINETWORK_PROFILE=relay ghcr.io/voi-network/voi-node:latest

Archiver node

docker run -e VOINETWORK_NETWORK=custom_name -e VOINETWORK_GENESIS=custom_url -e VOINETWORK_PROFILE=archiver ghcr.io/voi-network/voi-node:latest