wagoodman / dive

A tool for exploring each layer in a docker image
MIT License
45.74k stars 1.75k forks source link

add CTRL+e for extracting current focused file #472

Open kaedwen opened 1 year ago

kaedwen commented 1 year ago

Added a way to extract the current focused item in the tree view. This is far from optimal and we can start discussing on it. https://github.com/wagoodman/dive/issues/224

TheRealGramdalf commented 8 months ago

This could use docker create and docker cp which would be much more efficient: https://unix.stackexchange.com/questions/331645/extract-file-from-docker-image

miskr-instructure commented 6 months ago

This could use docker create and docker cp which would be much more efficient:

TheRealGramdalf commented 6 months ago
  • docker cp requires tar to be installed in the image which makes that solution worse.
  • docker cp also requires the container to be running, so the entrypoint would need to be overwritten with a program that keeps running, this also requires specific binaries (eg. sleep/tail) to be present

_The docker create command creates a writeable container layer over the specified image and prepares it for running the specified command. The container ID is then printed to STDOUT. This is similar to docker run -d except the container is never started. You can then use the docker start command to start the container at any point._

  • it would be difficult to ensure that the container is deleted in every case (dive can get killed/terminated)
  • for small images, or if the file is early in the tar stream, the PR's solution is probably more efficient that waiting for docker to spin up a sandbox and run a process in it.

The only other thing I can think of is copying a file from an intermediate layer (that has been changed in a following layer) - I'm not sure if you can do that with docker cp, it doesn't look like you can

kaedwen commented 6 months ago

Hey @TheRealGramdalf, I would say that @miskr-instructure is right with the docker cp had this problem (hence the idea of using Dive and using it to extract files)

Try this

miskr-instructure commented 6 months ago

^ You may be able to solve those by readonly-mounting cp and tar from somewhere outside, but those have the dynamic library dependencies (unless they are busybox-based) which you'd also need to mount in, etc...

All the solutions to this are more complex than the PR's. The only other trick would be directly accessing docker's image repo in the filesystem instead of going through the daemon, which is too brittle.