Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sources/ContainerCommands/Container/ContainerList.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/command-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ container delete [--all] [--force] [--debug] [<container-ids> ...]
* `-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.

Expand Down