Skip to content

Instantly share code, notes, and snippets.

View ychevarrias's full-sized avatar

Yelson Chevarrias ychevarrias

  • Lurin, Lima - Perú
  • 21:26 (UTC -05:00)
View GitHub Profile
@ychevarrias
ychevarrias / install-docker.sh
Created January 6, 2021 07:38 — forked from p3jitnath/install-docker.sh
Docker and Nvidia Docker installation in Ubuntu 20.04 LTS
# WARNING : This gist in the current form is a collection of command examples. Please exercise caution where mentioned.
# Docker
sudo apt-get update
sudo apt-get remove docker docker-engine docker.io
sudo apt install docker.io
sudo systemctl start docker
sudo systemctl enable docker
docker --version