We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 354309f commit 6ed6db2Copy full SHA for 6ed6db2
common-functions
@@ -667,7 +667,7 @@ service_stop() {
667
declare SERVICE="$1"
668
local SERVICE_ROOT="$PLUGIN_DATA_ROOT/$SERVICE";
669
local SERVICE_NAME="$(get_service_name "$SERVICE")"
670
- local ID=$(docker ps -f status=running | grep -e "$SERVICE_NAME$" | awk '{print $1}') || true
+ local ID=$(docker ps -f status=running --no-trunc | grep -e "$SERVICE_NAME$" | awk '{print $1}') || true
671
[[ -z $ID ]] && dokku_log_warn "Service is already stopped" && return 0
672
673
if [[ -n $ID ]]; then
0 commit comments