mirror of
https://github.com/docker/cli.git
synced 2026-01-15 07:40:57 +03:00
This makes it possible to simply wrap a command inside a container. This makes it easier to use a container as an unified build environment. Examples: ~/workspace/docker $ docker run -v `pwd`:`pwd` -w `pwd` -i -t ubuntu ls AUTHORS Makefile archive.go changes.go docker [...] docker run -v `pwd`:`pwd` -w `pwd` -i -t ubuntu pwd /home/marco/workspace/docker Upstream-commit: 687d27ab575778196ea646b6d3fa61b6c8e512b0 Component: engine