If passing -t for tail, use logs --follow else just get last 100 lines

This commit is contained in:
silasb
2014-02-25 21:23:01 -05:00
parent 75286cdfa1
commit 37f977a68d

View File

@@ -38,9 +38,10 @@ case "$1" in
if [[ -f "$DOKKU_ROOT/$APP/CONTAINER" ]]; then
CONTAINER=$(<$DOKKU_ROOT/$APP/CONTAINER)
docker logs $CONTAINER | tail -n 100
if [[ $3 == "-t" ]]; then
docker logs --follow $CONTAINER
else
docker logs $CONTAINER | tail -n 100
fi
else
echo "Application's container not found"