From 3b2bb2ebc646ed9e7d784eff561a5f8c78134ed7 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Fri, 10 Mar 2017 19:47:26 -0700 Subject: [PATCH] docs: Note that the remote username is important [ci skip] --- docs/deployment/application-deployment.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/deployment/application-deployment.md b/docs/deployment/application-deployment.md index c8f0d2e9a..faeb06e54 100644 --- a/docs/deployment/application-deployment.md +++ b/docs/deployment/application-deployment.md @@ -52,6 +52,7 @@ Now you can deploy the `ruby-rails-sample` app to your Dokku server. All you hav ```shell # from your local machine +# the remote username *must* be dokku or pushes will fail git remote add dokku dokku@dokku.me:ruby-rails-sample git push dokku master ``` @@ -142,6 +143,8 @@ Note that if the buildpack or dockerfile build process require ssh key access fo The name of remote repository is used as the name of application to be deployed, as for example above: ```shell +# from your local machine +# the remote username *must* be dokku or pushes will fail git remote add dokku dokku@dokku.me:ruby-rails-sample git push dokku master ``` @@ -154,6 +157,8 @@ remote: http://ruby-rails-sample.dokku.me You can also specify fully qualified names, say `app.dokku.me`, as ```shell +# from your local machine +# the remote username *must* be dokku or pushes will fail git remote add dokku dokku@dokku.me:app.dokku.me git push dokku master ``` @@ -166,6 +171,8 @@ remote: http://app.dokku.me This is in particular useful, then you want to deploy to root domain, as ```shell +# from your local machine +# the remote username *must* be dokku or pushes will fail git remote add dokku dokku@dokku.me:dokku.me git push dokku master ```