diff --git a/docker/install-docker.md b/docker/install-docker.md index 50f3db7..c3ed39a 100644 --- a/docker/install-docker.md +++ b/docker/install-docker.md @@ -2,4 +2,20 @@ Docker itself is really easy to install and get going. Assuming you are running ``` sudo apt-get update && sudo apt-get upgrade -y -``` \ No newline at end of file +``` + +Once your system is up to date we can install Docker + +``` +curl -sSL https://get.docker.com | sh +``` + +Docker is now installed. You will want to add your current user to the Docker Group. + +``` +sudo usermod -aG docker $USER +``` + +This change wont take place until you log out of the server and then log back in. + +That is basically it. Docker is up and running on your server. \ No newline at end of file