Files
video-assets/docker/install-docker.md
T

572 B

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.