From aaeed2073742e71d01d52f346d58664e8503900c Mon Sep 17 00:00:00 2001 From: Tom Davidson Date: Sun, 2 Nov 2025 20:09:30 -0700 Subject: [PATCH] Add Podman support to dive instructions Updated instructions to include Podman usage for diving into images. --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a97bdf4..3214d00 100644 --- a/README.md +++ b/README.md @@ -15,9 +15,12 @@ To analyze a Docker image simply run dive with an image tag/id/digest: dive ``` -or you can dive with Docker directly: +or you can dive with Podman/Docker directly: ``` +alias dive="podman run -ti --rm -v /run/user/$(id -u)/podman/podman.sock:/run/podman/podman.sock -e DOCKER_HOST=unix:///run/podman/podman.sock docker.io/wagoodman/dive" + alias dive="docker run -ti --rm -v /var/run/docker.sock:/var/run/docker.sock docker.io/wagoodman/dive" + dive # for example