Skip to content

Instantly share code, notes, and snippets.

@cxdy
Created December 5, 2021 21:55
Show Gist options
  • Save cxdy/e43e8eca075a74542c007c94d5b2e339 to your computer and use it in GitHub Desktop.
Save cxdy/e43e8eca075a74542c007c94d5b2e339 to your computer and use it in GitHub Desktop.
oneliner to install docker because i have to look it up every time
apt update && apt upgrade -y && apt install -y apt-transport-https ca-certificates curl software-properties-common && curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - && add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable" && apt install docker-ce -y
@cxdy
Copy link
Author

cxdy commented Dec 5, 2021

ubuntu 20.04 btw

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment