From 11450915d0d33df9b9189e95812dcb29c595cfb9 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 26 Jan 2025 14:05:59 -0500 Subject: [PATCH] add podman support --- .config/config.toml | 3 +++ cable/unix-channels.toml | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/.config/config.toml b/.config/config.toml index bbfd6dc..65d833b 100644 --- a/.config/config.toml +++ b/.config/config.toml @@ -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" diff --git a/cable/unix-channels.toml b/cable/unix-channels.toml index 3062d9f..b991a56 100644 --- a/cable/unix-channels.toml +++ b/cable/unix-channels.toml @@ -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"