Merge pull request #3038 from shrmnk/feature/ps-stopall

Feature: dokku ps:stopall
This commit is contained in:
Jose Diaz-Gonzalez
2018-02-13 01:44:05 -05:00
committed by GitHub
7 changed files with 53 additions and 5 deletions

View File

@@ -14,6 +14,7 @@ ps:scale <app> <proc>=<count> [<proc>=<count>] # Get/Set how many instances of a
ps:set-restart-policy <app> <policy> # Sets app restart-policy
ps:start <app> # Start app container(s)
ps:stop <app> # Stop app container(s)
ps:stopall # Stop all app container(s)
```
By default, Dokku will only start a single `web` process - if defined - though process scaling can be managed by the `ps` plugin or [via a custom `DOKKU_SCALE` file](/docs/deployment/process-management.md#manually-managing-process-scaling).
@@ -99,6 +100,12 @@ Deployed applications can be stopped using the `ps:stop` command. This turns off
dokku ps:stop node-js-app
```
You may also stop all applications at once:
```shell
dokku ps:stopall
```
### Starting applications
All stopped containers can be started using the `ps:start` command. This is similar to running `ps:restart`, except no action will be taken if the application containers are running.