mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 20:11:19 +08:00
8e09a08059
Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com>
506 B
506 B
dokku
Docker powered mini-Heroku (PaaS). Easily deploy multiple apps to your server in different languages using a single
git-pushcommand. 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}}