mirror of
https://github.com/dokku/dokku.git
synced 2026-05-18 05:05:46 +02:00
16 lines
392 B
Bash
Executable File
16 lines
392 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
|
|
source "$PLUGIN_AVAILABLE_PATH/nginx-vhosts/functions"
|
|
|
|
cmd-nginx-logs() {
|
|
declare desc="display app nginx logs from command line"
|
|
declare cmd="$1"
|
|
|
|
[[ -z $2 ]] && dokku_log_fail "Please specify an app to run the command on"
|
|
nginx_logs "$@"
|
|
}
|
|
|
|
cmd-nginx-logs "$@"
|