From fe00835aa7a29de9ff3ddee9d0bb27a8206b75de Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sat, 14 May 2016 14:28:05 -0400 Subject: [PATCH] clarify what happens when installing via the bootstrap.sh file Closes #2041 [ci skip] --- docs/advanced-installation.md | 4 +++- docs/home.html | 2 +- docs/installation.md | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/advanced-installation.md b/docs/advanced-installation.md index d7436259b..f61b1a3e9 100644 --- a/docs/advanced-installation.md +++ b/docs/advanced-installation.md @@ -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 diff --git a/docs/home.html b/docs/home.html index a7b4bc950..3e4592a0a 100644 --- a/docs/home.html +++ b/docs/home.html @@ -90,7 +90,7 @@

-  # only works on debian systems! +  # for debian systems, installs dokku via apt-get

diff --git a/docs/installation.md b/docs/installation.md index 009749f6c..310c4eb77 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -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 ```