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 ```