Update docker/install-docker.md
This commit is contained in:
@@ -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
|
sudo apt-get update && sudo apt-get upgrade -y
|
||||||
```
|
```
|
||||||
|
|
||||||
|
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.
|
||||||
Reference in New Issue
Block a user