From 6240aaa6052acab4595ae7514c8dfe1e8602f8f7 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Wed, 18 Feb 2015 02:34:49 -0500 Subject: [PATCH 1/3] [ci skip] Clarify that the user needs sudo access to install dokku. Closes #961 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e7c1ee3b7..f736b5358 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,9 @@ Docker powered mini-Heroku. The smallest PaaS implementation you've ever seen. S ## Installing -To install the latest stable version of dokku, you can run the following bootstrapper command: +To install the latest stable release, you can run the following command as a user that has access to `sudo`: - $ wget -qO- https://raw.github.com/progrium/dokku/v0.3.15/bootstrap.sh | sudo DOKKU_TAG=v0.3.15 bash + wget -qO- https://raw.github.com/progrium/dokku/v0.3.15/bootstrap.sh | sudo DOKKU_TAG=v0.3.15 bash ### Upgrading From c475bfdc24c4edafb2b51513d0a08a1c5f3b7a6a Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Wed, 18 Feb 2015 02:35:14 -0500 Subject: [PATCH 2/3] [ci skip] add STACK_URL reference to make it clear how to customize the buildstep source --- docs/advanced-installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced-installation.md b/docs/advanced-installation.md index a2615b8f6..348eb7270 100644 --- a/docs/advanced-installation.md +++ b/docs/advanced-installation.md @@ -39,7 +39,7 @@ Dokku ships with a pre-built version of version of the [buildstep](https://githu ```shell git clone https://github.com/progrium/dokku.git cd dokku -sudo BUILD_STACK=true make install +sudo BUILD_STACK=true STACK_URL=https://github.com/progrium/buildstep.git make install ``` ## Configuring From 19a10e3455d61d80f0abc6fcbeef831fdbfb1cf7 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Wed, 18 Feb 2015 02:35:34 -0500 Subject: [PATCH 3/3] [ci skip] do not use deprecated `dokku delete` command --- docs/application-deployment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/application-deployment.md b/docs/application-deployment.md index 853336e79..9327ca13e 100644 --- a/docs/application-deployment.md +++ b/docs/application-deployment.md @@ -116,5 +116,5 @@ Dokku will wait `DOKKU_WAIT_TO_RETIRE` seconds (default: `60`) before stopping t SSH onto the server, then execute: ```shell -dokku delete myapp +dokku apps:destroy myapp ```