Can I pull files from a docker container to a local host?
I want to take certain directories from the docker containers I worked on and move them to the local host daily.
Is this possible and how can this be done?
Yes, you can just use the command docker cp.
docker cp
An example from the official CLI post:
sudo docker cp <container-id>:/etc/hosts .
, ? , , @abronan, -, , , ,