This commit allows `docker-compose` to access `top` for containers much like running `docker top` directly on a given container. This commit includes: * `docker-compose` CLI changes to expose `top` * Completions for `bash` and `zsh` * Required testing for the new `top` command Signed-off-by: Peter Urda <peter.urda@gmail.com>
6 lines
100 B
YAML
6 lines
100 B
YAML
service_a:
|
|
image: busybox:latest
|
|
command: top
|
|
service_b:
|
|
image: busybox:latest
|
|
command: top
|