Install
Automatic Installation
source <(curl -s https://raw.githubusercontent.com/NodersUA/Scripts/main/analog)Manual Installation
Node
Update the repositories
sudo apt update && sudo apt upgrade -yInstall developer packages
apt install curl iptables build-essential git wget jq make gcc nano tmux htop nvme-cli pkg-config libssl-dev libleveldb-dev tar clang bsdmainutils ncdu unzip libleveldb-dev chrony -yInstall docker
# Install Docker
if ! [ -x "$(command -v docker)" ]; then
curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh
sudo usermod -aG docker $USER
docker --version
else
echo $(docker --version)
fiLast updated
Was this helpful?