- Raspbian Jessie is installed. The procedure described in what follows was tested with Raspbian 2017-01-11.
Consider to upgrade your installation first via
sudo apt-get update
sudo apt-get dist-upgrade
From this documentation:
- Install docker:
sudo curl -sSL get.docker.com | sh
- Add the
pi
user to thedocker
group:sudo usermod -aG docker pi
- Configure to start docker on boot:
sudo systemctl enable docker
Now reboot or start docker via
sudo systemctl start docker