Docs
Ecosystem Roles
Validator
Deploying with Docker
Full Node

Deploying with Docker

An Tangle node can be spun up quickly using Docker. For more information on installing Docker, please visit the official Docker docs (opens in a new tab). When connecting to Tangle on Kusama, it will take a few days to completely sync the embedded relay chain. Make sure that your system meets the requirements which can read here.

Using Docker

The quickest and easiest way to get started is to make use of our published Docker Tangle image. In doing so, users simply pull down the image from ghcr.io, set their keys, fetch the applicable chainspec and run the start command to get up and running.

1. Pull the Tangle Docker image:

# Only use "main" if you know what you are doing, it will use the latest and maybe unstable version of the node.

docker pull ghcr.io/webb-tools/tangle/tangle-standalone:main

2. Create a local directory to store the chain data:

Let us create a directory where we will store all the data for our node. This includes the chain data, and logs.

mkdir /var/lib/tangle/

3. Fetch applicable chainspec(s):

To join the Tangle Test network, we need to fetch the appropriate chainspec for the Tangle network. Download the latest chainspec for standalone testnet:

# Fetches chainspec for Tangle network
wget https://github.com/webb-tools/tangle/blob/main/chainspecs/tangle-standalone.json

Please make a reference where you have stored this json file as we will need it in the next steps.

Note: Full nodes do not participate in block production or consensus so no required keys are necessary.

4. Start Tangle full node:

To start the node run the following command:

docker run --rm -it -v /var/lib/tangle/:/data ghcr.io/webb-tools/tangle/tangle-standalone:main \
  --chain /data/chainspec/tangle-standalone.json \
  --name="YOUR-NODE-NAME" \
  --base-path /data \
  --rpc-cors all \
  --ws-external \
  --ws-port 9946

For an overview of the above flags, please refer to the CLI Usage (opens in a new tab) page of our documentation.

Once Docker pulls the necessary images, your Tangle node will start, displaying lots of information, such as the chain specification, node name, role, genesis state, and more.

If you followed the installation instructions for Tangle, once synced, you will be connected to peers and see blocks being produced on the Tangle network! Note that in this case you need to also sync to the Polkadot/Kusama relay chain, which might take a few days.

Update the Client

As Tangle development continues, it will sometimes be necessary to upgrade your node software. Node operators will be notified on our Discord channel when upgrades are available and whether they are necessary (some client upgrades are optional). The upgrade process is straightforward and is the same for a full node.

  1. Stop the docker container:
sudo docker stop `CONTAINER_ID`
  1. Get the latest version of Tangle from the Tangle GitHub Release page (opens in a new tab)

  2. Pull the latest version of Tangle binary by doing docker pull ghcr.io/webb-tools/tangle/tangle-standalone:{VERSION_CODE}. Example, if the latest version of Tangle is v0.1.2, then the command would be docker pull ghcr.io/webb-tools/tangle/tangle-standalone:v0.1.12

  3. Restart the tangle container and you should have the updated version of the client.

Purge Your Node

If you need a fresh instance of your Tangle node, you can purge your node by removing the associated data directory.

You'll first need to stop the Docker container:

sudo docker stop `CONTAINER_ID`

If you did not use the -v flag to specify a local directory for storing your chain data when you spun up your node, then the data folder is related to the Docker container itself. Therefore, removing the Docker container will remove the chain data.

If you did spin up your node with the -v flag, you will need to purge the specified directory. For example, for the suggested data directly, you can run the following command to purge your parachain node data:

# purges standalone data
sudo rm -rf /data/chains/*

If you ran with parachain node you can run the following command to purge your relay-chain node data:

# purges relay chain data
sudo rm -rf /data/polkadot/*

Now that your chain data has been purged, you can start a new node with a fresh data directory!