You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
412 B
Bash
9 lines
412 B
Bash
#!/usr/bin/env bash
|
|
# Outputs information about the current docker status
|
|
DOCKER_STATUS=$(docker info)
|
|
CONTAINERS=$(echo "$DOCKER_STATUS" | awk '/Containers/ {print $2}')
|
|
RUNNING=$(echo "$DOCKER_STATUS" | awk '/Running/ {print $2}')
|
|
STOPPED=$(echo "$DOCKER_STATUS" | awk '/Stopped/ {print $2}')
|
|
IMAGES=$(echo "$DOCKER_STATUS" | awk '/Images/ {print $2}')
|
|
echo -e "\ue7b0 $RUNNING \ufb99 $STOPPED \uf1c5 $IMAGES"
|