23 lines
644 B
Markdown
23 lines
644 B
Markdown
* Note: There is currently no video to accompany these instructions. *
|
|
|
|
Docker itself is really easy to install and get going. Assuming you are running Ubuntu or other Linux apt server, start by updating the system.
|
|
|
|
```
|
|
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. |