mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
32 lines
1.1 KiB
Markdown
32 lines
1.1 KiB
Markdown
# Remote commands
|
|
|
|
Dokku commands can be run over ssh. Anywhere you would run `dokku <command>`, just run `ssh -t dokku@dokku.me <command>`
|
|
The `-t` is used to request a pty. It is highly recommended to do so.
|
|
To avoid the need to type the `-t` option each time, simply create/modify a section in the `.ssh/config` on the client side, as follows:
|
|
|
|
```
|
|
Host dokku.me
|
|
RequestTTY yes
|
|
```
|
|
|
|
## Run a command in the app environment
|
|
|
|
It's possible to run commands in the environment of the deployed application:
|
|
|
|
```shell
|
|
dokku run node-js-app ls -alh
|
|
dokku run <app> <cmd>
|
|
```
|
|
|
|
## Behavioral modifiers
|
|
|
|
Dokku also supports certain command-line arguments that augment it's behavior. If using these over ssh, you must use the form `ssh -t dokku@dokku.me -- <command>`
|
|
in order to avoid ssh interpretting dokku arguments for itself.
|
|
|
|
```shell
|
|
--quiet suppress output headers
|
|
--trace enable DOKKU_TRACE for current execution only
|
|
--rm|--rm-container remove docker container after successful dokku run <app> <command>
|
|
--force force flag. currently used in apps:destroy
|
|
```
|