1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 21:55:24 +02:00
tldr/pages/common/dokku.md
Managor 8e09a08059
common*: refresh old pages part 3 (#16257)
Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com>
2025-04-25 21:19:03 +03:00

506 B

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