You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
562 B
Plaintext
26 lines
562 B
Plaintext
2 years ago
|
def all_container_names [] {
|
||
|
podman container ls --all --format json | from json | get Names | each { get 0 }
|
||
|
}
|
||
|
|
||
|
def running_container_names [] {
|
||
|
podman container ls --format json | from json | get Names | each { get 0 }
|
||
|
}
|
||
|
|
||
|
export extern "podman start" [
|
||
|
container: string@all_container_names
|
||
|
--help
|
||
|
-a --attach
|
||
|
--detach-keys
|
||
|
-f:string --filter:string
|
||
|
-i --interactive
|
||
|
-l --latest
|
||
|
]
|
||
|
|
||
|
export extern "podman stop" [
|
||
|
container: string@running_container_names
|
||
|
-a --all
|
||
|
--cidfile: list
|
||
|
-i --ignore
|
||
|
-l --latest
|
||
|
-t: number --time: number
|
||
|
]
|