Dockerized version of doit
479
This is a very simple wrapper to run the awesome tool doit from a
container, to avoid having to install Python or the doit package.
Simply run it as:
docker run -it -v $(pwd):/target waltermoreira/doit_in_docker doit help
If you need to use docker in the dodo.py file, you need to
mount the docker socket into the container::
docker run -it \
-v $(pwd):/target \
-v /var/run/docker.sock:/docker.sock \
waltermoreira/doit_in_docker doit help
Instead of typing the full docker command every time, create an alias with:
eval $(docker run waltermoreira/doit_in_docker /alias)
Then you can use the command doit_in_docker as:
doit_in_docker doit help
@schettino72 for the great doit tool, and @joestubbs for finding it!
MIT
Content type
Image
Digest
sha256:ddb8af64c…
Size
153.5 MB
Last updated
almost 11 years ago
docker pull waltermoreira/doit_in_docker