# Allora full node guide

By [showhandism.eth](https://paragraph.com/@showhandism) · 2024-06-13

---

**The article is a guide for setting up a full node for the Allora network on Ubuntu 20.04 using Docker. It includes detailed steps for installing Docker, Docker Compose, and pulling the Allora network repository. The guide also explains how to start the node and check logs to ensure the node is running and synchronizing correctly. Here are the key steps summarized:  
  
1.Install Docker and Docker Compose.**

    sudo apt-get update
    
    sudo apt-get upgrade
    
    sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
    
    curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
    
    echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
    
    sudo apt-get update
    
    sudo apt-get install docker-ce
    
    sudo systemctl start docker
    
    sudo systemctl enable docker
    
    docker --version
    

  
if it’s working good,you should see this

![](https://storage.googleapis.com/papyrus_images/cbfe586b5a42c40f2affdf2735c7d5613b537d8f80d6b1586b0dfbf013c3e7fb.png)

    sudo curl -L "https://github.com/docker/compose/releases/download/$(curl -s https://api.github.com/repos/docker/compose/releases/latest | grep -Po '"tag_name": "\K.*?(?=")')/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
    
    sudo chmod +x /usr/local/bin/docker-compose
    
    docker-compose --version
    

if it’s working good,you should see this

![](https://storage.googleapis.com/papyrus_images/a45ded2570a8bceec3f26e3eefbee44517e32e0f148e4ad12a14779d7bdcf50f.png)

**2.Clone the Allora network repository.**

    git clone https://github.com/allora-network/allora-chain.git
    
    cd allora-chain
    
    docker-compose pull
    
    docker-compose up -d
    

  
if it’s working good,you should see this

![](https://storage.googleapis.com/papyrus_images/408134c670f57cb6125c5f872f9e82f687605a2aeb9d219bf95d350b01e04ba1.png)

**3.Monitor logs to verify successful synchronization.**

    docker-compose logs -f
    

![](https://storage.googleapis.com/papyrus_images/fe54991fc47a81fac9ccfe18f9ef61e5c1ab536afc6409e860723c68f8112b69.png)

it will take 2-10hrs to synchronization,just be patient  
  
if you want check it’s done or not

    curl -s http://localhost:26657/status | jq .
    

![](https://storage.googleapis.com/papyrus_images/1bd788bdd78c1cec5e3c52640428d49de8c7d10faba99dd6fa8a56e876dd24d0.png)

when it shows false,it’s done

---

*Originally published on [showhandism.eth](https://paragraph.com/@showhandism/allora-full-node-guide)*
