Raspbian installation follow-up (#2915)

* Raspbian installation follow-up

* Clarify what state you are in after using the convenience script

* Small correction
This commit is contained in:
Misty Stanley-Jones 2017-04-19 17:08:37 -05:00 committed by GitHub
parent be37ddd557
commit 60000d2eab
1 changed files with 25 additions and 9 deletions

View File

@ -145,16 +145,32 @@ from the repository.
**armhf**: **armhf**:
```bash You can choose between two methods for `armhf`. You can use the same method
$ echo "deb [arch=armhf] https://apt.dockerproject.org/repo \ as Debian, setting up the repository and using `apt-get install`, or you can
raspbian-jessie main" | \ use a convenience script, which requires privileged access, but sets up the
sudo tee /etc/apt/sources.list.d/docker.list repository for you and installs the packages for Bash auto-completion.
```
> **Warning**: It is HIGHLY recommended you use - Setting up the repository directly:
> ```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 ```bash
> appropriately mirror the download depending on your country. $ 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**: 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` 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 repository that does not exist. You need to comment out this repository or