I want to display state of all running container, so I could achieve it like the following:
docker stats $(docker ps -q)
CON
docker stats $(docker ps | awk '{if(NR>1) print $NF}')