How to install inkonchain/node. Official installation instructions. Project installation guide. Framework or library installation. Build installation instructions. How to setup and install from GitHub. Installation steps and setup instructions. Official docs and installation instructions GitHub.
inkonchain/node Installation Guide
How to install inkonchain/node. Official project installation instructions and setup guide.
⚡
Automated Install (Recommended)
Quick installation instructions for inkonchain/node. This is the fastest way to complete project installation and setup.
Install via curl
curl -fsSL https://hexmos.com/ipm-install | bash &&
ipm i inkonchain/nodeor
Install via npx
npx @hexmos/ipm i inkonchain/nodePrerequisites
docker
build_toolVersion: 3.8.0-ce-stable
docker-compose
system_toolVersion: 1.29.2
curl
system_packageVersion: 7.84.0
gnupg
system_packageVersion: 1.6.2
ca-certificates
system_packageVersion: 2023.10.1
lsb-release
knowledgeVersion: 4.2.1
python
languageVersion: 3.8.0
pip
package_managerVersion: 21.3.1
Manual Installation Methods
Manual installation instructions. How to install from GitHub source.
Ubuntu (apt-get)
sudo apt-get update && sudo apt-get upgrade -y
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
echo 'deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.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 -y docker-ce docker-ce-cli containerd.io docker-compose-plugin
sudo usermod -aG docker $(whoami)
sudo docker run hello-worldDocker Compose (Linux)
git clone https://github.com/inkonchain/node
cd node
cp .env.example .env
docker compose up -d --buildPost Installation Steps
- Start the node using `docker compose up -d --build`.
- Access the Ink Node UI at http://localhost:3000.
