From 509d42f0f26698b2df2ba9b8e248e07be48fa058 Mon Sep 17 00:00:00 2001 From: Nathan Vander Wilt Date: Tue, 17 Feb 2026 15:57:53 -0800 Subject: [PATCH 1/2] Add ps alias to ContainerList command re. #1213 (and cf. #1217) Co-authored-by: Simone --- Sources/ContainerCommands/Container/ContainerList.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 9a486bc50ff62da6e5f45423f518caac337bb1a0 Mon Sep 17 00:00:00 2001 From: Nathan Vander Wilt Date: Tue, 17 Feb 2026 16:00:57 -0800 Subject: [PATCH 2/2] Add ps alias mention to command-reference docs --- docs/command-reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.