Update docker/install-docker.md

This commit is contained in:
2026-04-30 06:16:06 -05:00
parent 1b05a354e3
commit 7bfe3b263e
+16
View File
@@ -3,3 +3,19 @@ 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.