mirror of
https://github.com/dokku/dokku.git
synced 2025-12-25 00:09:23 +01:00
39 lines
1.1 KiB
Bash
Executable File
39 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
[[ " help ps:help " == *" $1 "* ]] || exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
|
|
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
|
|
|
|
case "$1" in
|
|
help | ps:help)
|
|
help_content_func () {
|
|
declare desc="return ps plugin help content"
|
|
cat<<help_content
|
|
ps <app>, List processes running in app container(s)
|
|
ps:scale [<app> <proc>=<count> [<proc>=<count>]], Get/Set how many instances of a given process to run
|
|
ps:start <app>, Start app container(s)
|
|
ps:stop <app>, Stop app container(s)
|
|
ps:rebuild <app>, Rebuild an app
|
|
ps:rebuildall, Rebuild all apps
|
|
ps:restart <app>, Restart app container(s)
|
|
ps:restartall, Restart all deployed app containers
|
|
ps:restore, Start previously running apps e.g. after reboot
|
|
help_content
|
|
}
|
|
|
|
if [[ $1 = "ps:help" ]] ; then
|
|
echo -e 'Usage: dokku ps[:COMMAND]'
|
|
echo ''
|
|
echo 'List running processes in container, and restart app.'
|
|
echo ''
|
|
echo 'Additional commands:'
|
|
help_content_func | sort | column -c2 -t -s,
|
|
else
|
|
help_content_func
|
|
fi
|
|
;;
|
|
|
|
*)
|
|
exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
|
|
;;
|
|
|
|
esac
|