add podman support

This commit is contained in:
Jesse Luehrs 2025-01-26 14:05:59 -05:00
parent 3a460a3526
commit 11450915d0
2 changed files with 8 additions and 0 deletions

View File

@ -193,6 +193,9 @@ toggle_preview = "ctrl-o"
# docker-images channel
"docker run" = "docker-images"
# podman-images channel
"podman run" = "podman-images"
# gitrepos channel
"nvim" = "git-repos"

View File

@ -25,6 +25,11 @@ name = "docker-images"
source_command = "docker image list --format=json | jq -r '.[] | .Names[0] // .Id'"
preview_command = "docker image inspect {0} | jq -C"
[[cable_channel]]
name = "podman-images"
source_command = "podman image list --format=json | jq -r '.[] | .Names[0] // .Id'"
preview_command = "podman image inspect {0} | jq -C"
# S3
[[cable_channel]]
name = "s3-buckets"