Files
dokku/docs/community/clients.md

40 lines
1.5 KiB
Markdown
Raw Permalink Normal View History

# Clients
Given the constraints, running Dokku commands remotely via SSH is fine. For certain configurations, the extra complication of manually invoking ssh can be a burden.
The easiest way to interact with Dokku remotely is by using the official client. Documented below are the various clients that you may wish to use.
## Official Client
See the [remote commands documentation](/docs/deployment/remote-commands.md) for more information on how to install and use the official client.
2015-02-19 00:44:36 -05:00
## (nodejs) dokku-toolbelt
Dokku-toolbelt is a node-based cli wrapper that proxies requests to the Dokku command running on remote hosts. You can install it via the following shell command (assuming you have nodejs and npm installed):
2015-02-19 00:44:36 -05:00
```shell
npm install -g dokku-toolbelt
```
See [documentation here](https://www.npmjs.com/package/dokku-toolbelt) for more information.
## (ruby) Dokku CLI
Dokku CLI is a rubygem that acts as a client for your Dokku installation. You can install it via the following shell command (assuming you have ruby and rubygems installed):
```shell
gem install dokku-cli
```
See [documentation here](https://github.com/SebastianSzturo/dokku-cli) for more information.
2015-02-19 01:18:16 -05:00
## (ruby) Dockland
Dockland is a rubygem that acts as a client for your Dokku installation. You can install it via the following shell command (assuming you have ruby and rubygems installed):
2015-02-19 01:18:16 -05:00
```shell
gem install dockland
```
See [documentation here](https://github.com/uetchy/dockland) for more information.