mirror of
https://github.com/dokku/dokku.git
synced 2026-05-18 05:05:46 +02:00
17 lines
348 B
Bash
Executable File
17 lines
348 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
|
|
|
|
cmd-urls() {
|
|
declare desc="reports dokku vitals for troubleshooting"
|
|
declare cmd="url"
|
|
declare APP="$2"
|
|
|
|
[[ -z $2 ]] && dokku_log_fail "Please specify an app to run the command on"
|
|
|
|
get_app_urls "$@"
|
|
}
|
|
|
|
cmd-urls "$@"
|