mirror of https://github.com/docker/compose.git
Shorten long commands in ps
This commit is contained in:
parent
b4c905dc83
commit
c4f5ed839f
|
@ -156,9 +156,12 @@ class TopLevelCommand(Command):
|
||||||
]
|
]
|
||||||
rows = []
|
rows = []
|
||||||
for container in containers:
|
for container in containers:
|
||||||
|
command = container.human_readable_command
|
||||||
|
if len(command) > 30:
|
||||||
|
command = '%s ...' % command[:30]
|
||||||
rows.append([
|
rows.append([
|
||||||
container.name,
|
container.name,
|
||||||
container.human_readable_command,
|
command,
|
||||||
container.human_readable_state,
|
container.human_readable_state,
|
||||||
container.human_readable_ports,
|
container.human_readable_ports,
|
||||||
])
|
])
|
||||||
|
|
Loading…
Reference in New Issue