What: Getting Docker running without hassle on raspberry3
Why: Using Docker images on raspberry
How: Using arm version of docker and standard apt-functionality
This is an extract from the docker documentation, which worked for me on a raspberry3 with raspbian jessie.
Install requirements
1 2 3 4 5 6 7 |
sudo apt-get update sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ gnupg2 \ software-properties-common |
Prepare installation
1 2 3 4 |
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - echo "deb [arch=armhf] https://download.docker.com/linux/debian \ $(lsb_release -cs) stable" | \ sudo tee /etc/apt/sources.list.d/docker.list |
Install
1 2 |
sudo apt-get update sudo apt-get install docker-ce |
Test
1 |
sudo docker run armhf/hello-world |