Mercurial > public > ssdt-docker
annotate scripts/info.sh @ 183:fc93880cda8d production hotfix/1.2.2
flow: Merged <hotfix> 'v1.2.2' to <master> ('production').
author | smith@nwoca.org |
---|---|
date | Wed, 20 Sep 2017 16:19:18 +0100 |
parents | 8f45c43ea7a4 |
children | fea886ba7279 |
rev | line source |
---|---|
55
77ff739c078d
add script to provide shortened docker ps with ssdt labels
smith@nwoca.org
parents:
diff
changeset
|
1 #!/bin/bash |
85
8f45c43ea7a4
DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
66
diff
changeset
|
2 source "$( dirname "${BASH_SOURCE[0]}")/.functions.sh" |
59 | 3 echo $BASH_VERSION |
62 | 4 docker version |
5 docker-compose version | |
66 | 6 echo "------- Docker info-------------" |
59 | 7 docker info |
66 | 8 echo "------- Images -----------------" |
85
8f45c43ea7a4
DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
66
diff
changeset
|
9 $SSDT_HOME/scripts/d-images.sh |
66 | 10 echo "------- Containers------" |
85
8f45c43ea7a4
DEP-12: start upgrading scripts and compose files for RC and docker 1.12
Dave Smith <smith@nwoca.org>
parents:
66
diff
changeset
|
11 $SSDT_HOME/scripts/d-ps.sh |
66 | 12 echo "------- OS Processes------------" |
61 | 13 top -b -n 1 |