new option docker-status --stop to stop (end therefore restart) a container
This commit is contained in:
@@ -1,13 +1,10 @@
|
||||
#!/bin/bash -e
|
||||
|
||||
############################################################################ begin logging
|
||||
# check if stdout is a terminal...
|
||||
if test -t 1; then
|
||||
# see if it supports colors...
|
||||
ncolors=$(tput colors)
|
||||
|
||||
# see if it supports colors...
|
||||
ncolors=$(tput colors)
|
||||
|
||||
if test -n "$ncolors" && test $ncolors -ge 8; then
|
||||
if test -n "$ncolors" && test $ncolors -ge 8; then
|
||||
bold="$(tput bold)"
|
||||
underline="$(tput smul)"
|
||||
standout="$(tput smso)"
|
||||
@@ -20,7 +17,6 @@ if test -t 1; then
|
||||
magenta="$(tput setaf 5)"
|
||||
cyan="$(tput setaf 6)"
|
||||
white="$(tput setaf 7)"
|
||||
fi
|
||||
fi
|
||||
|
||||
append_msg() {
|
||||
@@ -174,7 +170,7 @@ services=$(for stack in ${stacks}; do
|
||||
"
|
||||
for service in ${status}; do
|
||||
time=${service%%;*}
|
||||
echo "$(date -d "$(sed 's,about an* ,1 ,;s,less than an* ,0 ,' <<<${time})");${service#*;}"
|
||||
echo "$(date +%s -d "$(sed 's,about an* ,1 ,;s,less than an* ,0 ,' <<<${time})");${service#*;}"
|
||||
done
|
||||
done | sort -hr)
|
||||
|
||||
|
Reference in New Issue
Block a user