docker-autocompose
docker-autocompose copied to clipboard
Recommendation: tell people how to install from git using pip
It's really easy to install your package via pip if you want to tell people how, so they don't have to manually clone the repo:
pip install git+https://github.com/Red5d/docker-autocompose.git#egg=autocompose
I just wanted to mention it, since it might make things easier on a lot of folks looking for a "quick and easy" solution!
Multiple container export commands
bashdocker ps -a | awk 'NR > 1 { id=$1; gsub(/[:\/]/, "_", $2); print id " " $2 }' | while read -r id name; do
python autocompose.py "$id" > "${name}.yml"
done
What's bashdocker?
pip install git+https://github.com/Red5d/docker-autocompose.git#egg=autocompose
a typo.. they meant to write
```bash docker ps -a | ...
Is the multiple container comment related to the recommendation about pip, or is this just an accidental cross-thread post?
thanks @doctorjei
neverless it would be really nice if pypi repo would just get a push ✨