Skip to content

Instantly share code, notes, and snippets.

View josh-gleason's full-sized avatar

Josh Gleason josh-gleason

  • Maryland, United States
View GitHub Profile
@josh-gleason
josh-gleason / install-docker.sh
Created May 10, 2022 19:44 — 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