Docker goodies

From BITPlan profiwiki Wiki
Revision as of 05:17, 23 October 2015 by Wf (talk | contribs)
Jump to navigation Jump to search

Copy a file from a container to the host system

docker cp <containerId>:/file/path/within/container /host/path/target

Attach to a running container

docker exec -it $containername /bin/bash

Remove untagged docker images

http://stackoverflow.com/a/28377696/1497139

docker rmi -f $(docker images -f "dangling=true" -q)

Support for build env variables

Upcoming feature in 1.9?