Nodes Guide

Getting Started

Learn how to run a Namada node with monitoring service using EmberStake official docker images

Requirements

You need a linux machine with docker installed on it.
Follow our Docker Guide to install Docker in your machine

Clone EmberStake repository for Namada

  1. Clone the latest tag These commands clone the latest version of repository onto home directory
cd ~
git clone https://github.com/EmberStake/namada-up.git 
cd namada-up
git checkout $(git tag -l | tail -1)
Make sure you are using the correct tag for the network you are trying to join
  1. copy the sample .env file
cp .env.sample .env

now you are ready to run Namada services. there are different sections in this .env file for each service.
we will cover each service config on their corresponding guide

  1. Pull images
docker compose --profile '*' pull
If you want to build images on your own machine run build instead of pull

Now jump into the documentation of the service you intend to run, you can start with Run a Namada Node