Files
dokku/plugins/proxy/subcommands/ports-remove
2020-02-10 01:40:30 -05:00

28 lines
727 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/proxy/functions"
cmd-proxy-ports-remove() {
declare desc="remove specific proxy port mappings from an app"
declare cmd="proxy:ports-remove"
[[ "$1" == "$cmd" ]] && shift 1
declare APP="$1"
verify_app_name "$APP"
shift 1
local INPUT_PORTS="$*"
if [[ -z "$INPUT_PORTS" ]]; then
dokku_log_warn "No port mapping specified. Please supply a valid configured host port"
list_app_proxy_ports "$APP"
dokku_log_fail "exiting..."
fi
remove_proxy_ports "$APP" "$@"
plugn trigger post-proxy-ports-update "$APP" "remove"
}
cmd-proxy-ports-remove "$@"