列出所有沙箱
要列出所有沙箱,请使用以下命令:Bash
按状态过滤
要按沙箱状态过滤,您可以指定--state 标志,可以是 running、paused 或同时指定。
Bash
按元数据过滤
要按沙箱元数据过滤沙箱,请使用--metadata 标志。
Bash
限制返回的数量
要限制命令返回的沙箱数量,请使用--limit 标志。
Bash
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
ppio-sandbox-cli sandbox list
--state 标志,可以是 running、paused 或同时指定。
# 列出正在运行和暂停的沙箱
ppio-sandbox-cli sandbox list --state running,paused
# 列出正在运行的沙箱
ppio-sandbox-cli sandbox list --state running
# 列出暂停的沙箱
ppio-sandbox-cli sandbox list --state paused
--metadata 标志。
ppio-sandbox-cli sandbox list --metadata key1=value1,key2=value2
--limit 标志。
ppio-sandbox-cli sandbox list --limit 10