Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 648 Bytes

pi-docker-installation.md

File metadata and controls

27 lines (18 loc) · 648 Bytes

Docker Installation

Prerequisites

  • Raspbian Jessie is installed. The procedure described in what follows was tested with Raspbian 2017-01-11.

Upgrade

Consider to upgrade your installation first via

sudo apt-get update
sudo apt-get dist-upgrade

Install Docker

From this documentation:

  • Install docker: sudo curl -sSL get.docker.com | sh
  • Add the pi user to the docker 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