Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,12 @@ To analyze a Docker image simply run dive with an image tag/id/digest:
dive <your-image-tag>
```

Copy link
Copy Markdown

@vassilit vassilit Dec 15, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about alias dive="DOCKER_HOST=unix://$XDG_RUNTIME_DIR/podman/podman.sock dive" and instruct user to run systemctl --user enable --now podman.socket or systemctl --user start podman.socket beforehand ?

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 <your-image-tag>

# for example
Expand Down