We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Basically do this:
$ docker run --rm image:version sleep 3600 $ docker exec container-id cmd *args
Instead of:
$ docker run --rm image:version cmd *args
Benefits:
$ time docker exec 952fd2f07aaa true real 0m0.082s user 0m0.012s sys 0m0.009s
$ time docker run --rm alpine:3.6 true real 0m0.966s user 0m0.013s sys 0m0.008s
===> More than 10x faster
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Basically do this:
Instead of:
$ docker run --rm image:version cmd *args
Benefits:
Instead of:
===> More than 10x faster
The text was updated successfully, but these errors were encountered: