Quickstart

Using Docker

The easiest way to run a local Aergo server is using Docker. An up-to-date Docker image is always available on Docker Hub.

docker run -p 7845:7845 aergo/node

You can pass arguments to the server like this:

docker run -p 7845:7845 aergo/node aergosvr --testmode

To supply your own config file, use:

docker run -p 7845:7845 -v $(pwd)/config.toml:/aergo/config.toml aergo/node aergosvr --config /aergo/config.toml

Syncing with public networks: Please refer to the syncing guide for further instructions.

Using binaries

You can download the most recent binary releases from Github.

Building from source

You can also build the binaries yourself from source. See here for details.