new option docker-status --stop to stop (end therefore restart) a container
This commit is contained in:
@@ -1,9 +1,6 @@
|
|||||||
#!/bin/bash -e
|
#!/bin/bash -e
|
||||||
|
|
||||||
############################################################################ begin logging
|
############################################################################ begin logging
|
||||||
# check if stdout is a terminal...
|
|
||||||
if test -t 1; then
|
|
||||||
|
|
||||||
# see if it supports colors...
|
# see if it supports colors...
|
||||||
ncolors=$(tput colors)
|
ncolors=$(tput colors)
|
||||||
|
|
||||||
@@ -21,7 +18,6 @@ if test -t 1; then
|
|||||||
cyan="$(tput setaf 6)"
|
cyan="$(tput setaf 6)"
|
||||||
white="$(tput setaf 7)"
|
white="$(tput setaf 7)"
|
||||||
fi
|
fi
|
||||||
fi
|
|
||||||
|
|
||||||
append_msg() {
|
append_msg() {
|
||||||
if test $# -ne 0; then
|
if test $# -ne 0; then
|
||||||
@@ -174,7 +170,7 @@ services=$(for stack in ${stacks}; do
|
|||||||
"
|
"
|
||||||
for service in ${status}; do
|
for service in ${status}; do
|
||||||
time=${service%%;*}
|
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
|
||||||
done | sort -hr)
|
done | sort -hr)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user