I can see that it's possible to insert a file into a Docker container via insert:
docker insert IMAGE URL PATH
Is there a way to fetch the contents of a file in a Docker container and save them somewhere on the host operating system? I'd like to extract the value of a configuration file and store it on my host operating system.
- docker insert worked on IMAGE files, not containers.
- it was deprecated in 0.10.0 and no longer exists.
– Sean Summers Dec 19 '14 at 16:28