Hop Docs
User Docs
Developer Docs v2
Developer Docs v2
  • Welcome
  • JS SDK
    • Welcome
    • Getting started
    • API Reference
    • Playground
  • Hop Node
    • Welcome
    • Getting started
    • Installing Docker
  • Smart Contracts
    • Welcome
    • Contract Addresses
  • Explorer
    • Explorer links
  • Whitepaper
    • Whitepaper PDF
  • faq
    • FAQ
Powered by GitBook
On this page
  1. Hop Node

Installing Docker

Last updated 1 month ago

The first step is to install Docker on your server. The official Docker install . A concise version of the instructions for installing Docker on an Ubuntu server are below:

sudo apt-get update
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable"
sudo apt-get install docker-ce -y
sudo usermod -aG docker $USER
newgrp docker
docker info
Instructions are here