docker-autocompose icon indicating copy to clipboard operation
docker-autocompose copied to clipboard

Recommendation: tell people how to install from git using pip

Open doctorjei opened this issue 1 year ago • 5 comments
trafficstars

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!

doctorjei avatar May 19 '24 20:05 doctorjei

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

likongshun avatar Jun 23 '24 06:06 likongshun

What's bashdocker?

newadventure079 avatar Jun 27 '24 01:06 newadventure079

pip install git+https://github.com/Red5d/docker-autocompose.git#egg=autocompose

a typo.. they meant to write

```bash docker ps -a | ...

HealsCodes avatar Jul 15 '24 14:07 HealsCodes

Is the multiple container comment related to the recommendation about pip, or is this just an accidental cross-thread post?

doctorjei avatar Jul 15 '24 19:07 doctorjei

thanks @doctorjei

neverless it would be really nice if pypi repo would just get a push ✨

bitdruid avatar May 22 '25 16:05 bitdruid