From 7eb8da5302c522b10b495796f39fd3a6371c5e6f Mon Sep 17 00:00:00 2001 From: KernelMadness Date: Mon, 14 Sep 2015 23:59:19 +0300 Subject: [PATCH] limit amount of lines in "dokku logs -t" --- plugins/00_dokku-standard/commands | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/00_dokku-standard/commands b/plugins/00_dokku-standard/commands index 59787c4d1..5d0e28a58 100755 --- a/plugins/00_dokku-standard/commands +++ b/plugins/00_dokku-standard/commands @@ -151,7 +151,7 @@ case "$1" in LAST_CONTAINER_ID=${CONTAINER_IDS[${#CONTAINER_IDS[@]} - 1]} if [[ $3 == "-t" ]]; then - DOKKU_LOGS_ARGS="--follow" + DOKKU_LOGS_ARGS="--follow --tail 100" else DOKKU_LOGS_ARGS="--tail 100" fi