diff --git a/Sources/ContainerCommands/Container/ContainerList.swift b/Sources/ContainerCommands/Container/ContainerList.swift index 53b110bfa..843da9ea7 100644 --- a/Sources/ContainerCommands/Container/ContainerList.swift +++ b/Sources/ContainerCommands/Container/ContainerList.swift @@ -26,7 +26,7 @@ extension Application { public static let configuration = CommandConfiguration( commandName: "list", abstract: "List running containers", - aliases: ["ls"]) + aliases: ["ls", "ps"]) @Flag(name: .shortAndLong, help: "Include containers that are not running") var all = false diff --git a/docs/command-reference.md b/docs/command-reference.md index d2aa31179..7c4d712d9 100644 --- a/docs/command-reference.md +++ b/docs/command-reference.md @@ -305,7 +305,7 @@ container delete [--all] [--force] [--debug] [ ...] * `-a, --all`: Delete all containers * `-f, --force`: Delete containers even if they are running -### `container list (ls)` +### `container list (ls/ps)` Lists containers. By default only running containers are shown. Output can be formatted as a table or JSON.