Skip to main content

Documentation Index

Fetch the complete documentation index at: https://test.pzona.fun/llms.txt

Use this file to discover all available pages before exploring further.

mkdb list displays all database containers that mkdb manages, in a formatted table with their current status and time remaining. Use it to get a quick overview of what is running, stopped, or about to expire. The command has a shorter alias, mkdb ls, that works identically.

Flags

--type
string
Filter the output to a specific database type. Accepts postgres, pg, mysql, or redis.
--status
string
Filter the output by container status. Accepts running or up, stopped or down, and expired.

Output columns

The table includes the following columns for each container:
ColumnDescription
NameThe display name you gave the database at creation
TypeDatabase type: postgres, mysql, or redis
StatusCurrent status: running, stopped, or expired
PortHost port the container is bound to
TTL remainingTime left before the container expires and is cleaned up

Examples

List all containers:
mkdb list
Use the shorter alias:
mkdb ls
Filter by database type:
mkdb ls --type postgres
Filter by status:
mkdb ls --status running
Combine filters:
mkdb ls --type redis --status running
mkdb list and mkdb ls are identical. The short alias is convenient for quick checks during development.