Start Here : Installation and Setup

Quick start guide on how-to use nvidia-docker with Linux to mine cryptocurrency

System Requirements

Install NVIDIA drivers

sudo add-apt-repository -y ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt-get -y install $(ubuntu-drivers list | sort | uniq | tail -n1)

The command ubuntu-drivers will return the latest drivers once you have updated the repository

Reboot your system now!

Install Docker

We must first install Docker to the target system

sudo apt-get -y remove docker docker-engine docker.io containerd runc
sudo apt-get -y install \
    apt-transport-https \
    ca-certificates \
    curl \
    gnupg-agent \
    software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository -y \
   "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
   $(lsb_release -cs) \
   stable"
sudo apt-get update
sudo apt-get install -y docker-ce docker-ce-cli containerd.io

Install Docker-Compose

Used to help orchestrate multiple docker containers in the future

Post Installation Steps

Most likely required for your system if you are not "root" / home users

Install nvidia-docker

Once you're strong enough, save the world:

Reboot your system now!

All in One Installer

Last updated

Was this helpful?