docs: update help output

This commit is contained in:
Jose Diaz-Gonzalez
2021-07-27 02:27:53 -04:00
parent 61d4b478ce
commit 1c6f847c55
2 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
# One-off Tasks
```
run [ --env KEY=VALUE | -e KEY=VALUE ] <app> <cmd> # Run a command in a new container using the current application image
run [-e|--env KEY=VALUE] [--no-tty] <app> <cmd> # Run a command in a new container using the current application image
```
Sometimes it is necessary to run a one-off command under an application. Dokku makes it easy to run a fresh container via the `run` command.

View File

@@ -27,7 +27,7 @@ help_desc
fn-help-content() {
declare desc="return help content"
cat <<help_content
run [--env KEY=VALUE] <app> <cmd>, Run a command in a new container using the current application image
run:detached [--env KEY=VALUE] <app> <cmd>, Run a command in a new detached container using the current application image
run [-e|--env KEY=VALUE] [--no-tty] <app> <cmd>, Run a command in a new container using the current application image
run:detached [-e|-env KEY=VALUE] [--no-tty] <app> <cmd>, Run a command in a new detached container using the current application image
help_content
}