ssh root@ip
adduser username
passwrd username
usermod -aG wheel username
usermod -aG sudo username
sudo ls -la /root
if the ablove steps fails we need to add the username to the sudoers list manually
su - username
curl -sSL https://get.docker.com/ | sh
If you would like to use Docker as a non-root user, you should now consider adding your user to the `docker` group with something like:
`sudo usermod -aG docker username`
Remember that you will have to log out and back in for this to take effect! logout
sudo service docker start
docker ps -a