NodeGuidebook
  • Welcome
  • Node
    • ZkVerify
      • Step-by-step | Installation Guide
      • Possible Errors
    • Pipe network
      • Bash | Video | Installation Guide
      • Update
    • Titan network
      • Bash | Video | Installation Guide
    • Multiple
      • Bash | Video | Installation Guide
    • Dria
      • Bash | Video | Installation Guide
      • Possible Errors
    • Hyperspace
      • Bash | Video | Installation Guide
      • Possible Errors
  • Gaia
    • Bash | Installation Guide
  • BROWSER NODE
    • Solix
      • Run node
  • Tools & Utilities
    • 🖥️Using screen on Linux
    • 🌐Port Configuration in Ubuntu
    • 📜Bash Script
  • VPS
    • Aeza
    • Xorek
Powered by GitBook
On this page
  1. Node
  2. ZkVerify

Possible Errors

Error: 'docker compose' is required to run this script, see installation instructions at 'https://docs.docker.com/compose/install/'.
  1. Establish dependencies:

apt update
apt install ca-certificates curl gnupg lsb-release -y
  1. Add a Docker GPG key:

install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | \
  gpg --dearmor -o /etc/apt/keyrings/docker.gpg
chmod a+r /etc/apt/keyrings/docker.gpg
  1. Add a Docker repository (no support for noble yet - we use jammy, works fine):

echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] \
  https://download.docker.com/linux/ubuntu jammy stable" | \
  tee /etc/apt/sources.list.d/docker.list > /dev/null
  1. Update and install Docker:

apt update
apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin -y
  1. Check that it works:

docker version
docker compose version

check_requirements Error: 'docker daemon' is not running, start it before running this script.
  1. Start the Docker service manually:

sudo systemctl start docker
  1. Check if Docker is running:

sudo systemctl status docker

You should see something like:

  1. Enable Docker to start automatically on boot:

sudo systemctl enable docker
  1. Verify

docker version
docker info
PreviousStep-by-step | Installation GuideNextPipe network

Last updated 12 days ago