Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Raspbian installation follow-up #2915

Merged
merged 3 commits into from
Apr 19, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 25 additions & 9 deletions engine/installation/linux/debian.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,16 +145,32 @@ from the repository.

**armhf**:

```bash
$ echo "deb [arch=armhf] https://apt.dockerproject.org/repo \
raspbian-jessie main" | \
sudo tee /etc/apt/sources.list.d/docker.list
```
You can choose between two methods for `armhf`. You can use the same method
as Debian, setting up the repository and using `apt-get install`, or you can
use a convenience script, which requires privileged access, but sets up the
repository for you and installs the packages for Bash auto-completion.

- Setting up the repository directly:

```bash
$ echo "deb [arch=armhf] https://apt.dockerproject.org/repo \
raspbian-jessie main" | \
sudo tee /etc/apt/sources.list.d/docker.list
```

- Using the convenience script:

```bash
$ curl -sSL https://get.docker.com > install.sh

$ sudo bash ./install.sh
```

> **Warning**: It is HIGHLY recommended you use
> ```bash $ curl -sSL https://get.docker.com | sh ``` in order to install Docker on
> Raspberry Pi's!! This will also install bash auto-completion and
> appropriately mirror the download depending on your country.
> **Warning**: Always audit scripts downloaded from the internet before
> running them locally.

If you use this method, Docker is installed and starts automatically.
Skip to step 4 below.

4. **Wheezy only**: The version of `add-apt-repository` on Wheezy adds a `deb-src`
repository that does not exist. You need to comment out this repository or
Expand Down