mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 04:00:36 +01:00
20 lines
425 B
Bash
Executable File
20 lines
425 B
Bash
Executable File
#!/usr/bin/env bash
|
|
[[ " help apps:help " == *" $1 "* ]] || exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
|
|
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
|
|
|
|
case "$1" in
|
|
help | apps:help)
|
|
cat<<EOF
|
|
apps, List your apps
|
|
apps:create <app>, Create a new app
|
|
apps:destroy <app>, Permanently destroy an app
|
|
apps:rename <old-app> <new-app>, Rename an app
|
|
EOF
|
|
;;
|
|
|
|
*)
|
|
exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
|
|
;;
|
|
|
|
esac
|