mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
38 lines
1.1 KiB
Bash
Executable File
38 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
[[ " help domains:help " == *" $1 "* ]] || exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
|
|
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
|
|
|
|
case "$1" in
|
|
help | domains:help)
|
|
help_content_func () {
|
|
declare desc="return domains plugin help content"
|
|
cat<<help_content
|
|
domains [<app>], List domains
|
|
domains:add <app> DOMAIN, Add a domain to app
|
|
domains:add-global DOMAIN, Add global domain name
|
|
domains:clear <app>, Clear all domains for app
|
|
domains:disable <app>, Disable VHOST support
|
|
domains:enable <app>, Enable VHOST support
|
|
domains:remove <app> DOMAIN, Remove a domain from app
|
|
domains:remove-global DOMAIN, Remove global domain name
|
|
help_content
|
|
}
|
|
|
|
if [[ $1 = "domains:help" ]] ; then
|
|
echo -e 'Usage: dokku domains[:COMMAND]'
|
|
echo ''
|
|
echo 'Manage vhost domains used by the Dokku proxy.'
|
|
echo ''
|
|
echo 'Additional commands:'
|
|
help_content_func | sort | column -c2 -t -s,
|
|
else
|
|
help_content_func
|
|
fi
|
|
;;
|
|
|
|
*)
|
|
exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
|
|
;;
|
|
|
|
esac
|