clarify what happens when installing via the bootstrap.sh file

Closes #2041

[ci skip]
This commit is contained in:
Jose Diaz-Gonzalez
2016-05-14 14:28:05 -04:00
parent ad0d2b1f6d
commit fe00835aa7
3 changed files with 5 additions and 3 deletions

View File

@@ -3,7 +3,9 @@
You can always install dokku straight from the latest - potentially unstable - master release via the following bash command:
```shell
wget -qO- https://raw.githubusercontent.com/dokku/dokku/master/bootstrap.sh | sudo DOKKU_BRANCH=master bash
# using a branch results in installing from source
wget https://raw.githubusercontent.com/dokku/dokku/master/bootstrap.sh
sudo DOKKU_BRANCH=master bash bootstrap.sh
```
## Development

View File

@@ -90,7 +90,7 @@
</div>
<div class="shell shell-curl shell-active">
<p class="line">
<span class="output">&nbsp;# only works on debian systems!</span>
<span class="output">&nbsp;# for debian systems, installs dokku via apt-get</span>
</p>
<p class="line">
<span class="path"></span>

View File

@@ -20,7 +20,7 @@ Dokku is designed for usage on a fresh installation of Ubuntu, and should instal
To install the latest stable version of dokku, you can run the following shell commands:
```shell
# installs dokku via apt-get
# for debian systems, installs dokku via apt-get
wget https://raw.githubusercontent.com/dokku/dokku/v0.5.6/bootstrap.sh
sudo DOKKU_TAG=v0.5.6 bash bootstrap.sh
```