This is a collection of tools that I have either dockerized or nicked from elsewhere. I then wrapped all this together within a go cli app to make it easier to call.
This came from a personal desire to see if it was possible to run most of my tools within docker. I wrote a pretty god awful Golang CLI app to wrap this all together and that is what dcmd
is.
make build_all
Essentially the dcmd script is a wrapper around the docker
command to run tools within containers
# Run vim in current directory
dcmd vim
# Run git status (all other git commands will work)
dcmd git status
MIT