We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aeb33b9 commit 68bd719Copy full SHA for 68bd719
src/container.ts
@@ -85,6 +85,7 @@ export default class Container {
85
return docker.ps(contextName)
86
.map(attributes => new Container(attributes))
87
.filter(container => container.contextName === contextName)
88
+ .sort((a, b) => a.name.localeCompare(b.name))
89
}
90
91
static find(contextName: string, containerName: string, options: FindOptions={}): Container | undefined {
0 commit comments