HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

dokku — Docker powered mini-Heroku (PaaS). Easily deploy multiple apps to your server in different languages

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commanddockerpaasdokkucliminiherokupowered

Problem

How to use the dokku command: Docker powered mini-Heroku (PaaS). Easily deploy multiple apps to your server in different languages using a single git-push command. More information: <https://dokku.com/docs/deployment/application-deployment/>.

Solution

dokku — Docker powered mini-Heroku (PaaS). Easily deploy multiple apps to your server in different languages using a single git-push command. More information: <https://dokku.com/docs/deployment/application-deployment/>.

List running apps:
dokku apps


Create an app:
dokku apps:create {{app_name}}


Remove an app:
dokku apps:destroy {{app_name}}


Install plugin:
dokku plugin:install {{full_repo_url}}


Link database to an app:
dokku {{db}}:link {{db_name}} {{app_name}}

Code Snippets

List running apps

dokku apps

Create an app

dokku apps:create {{app_name}}

Remove an app

dokku apps:destroy {{app_name}}

Install plugin

dokku plugin:install {{full_repo_url}}

Link database to an app

dokku {{db}}:link {{db_name}} {{app_name}}

Context

tldr-pages: common/dokku

Revisions (0)

No revisions yet.