1
0
mirror of https://github.com/balkian/dotfiles.git synced 2024-09-18 17:51:42 +00:00
dotfiles/scripts/.bin/compose-run

22 lines
274 B
Plaintext
Raw Normal View History

2015-09-22 15:24:14 +00:00
#!/bin/sh
CWD=$PWD
if [ -z "$CONTAINER" ];
then
CONTAINER=main
fi
while [ -e "$PWD" -a "$PWD" != "/" ]
do
if [ -e "$PWD/docker-compose.yml" ]; then
docker-compose run --rm main $*
exit $?
else
cd `dirname $PWD`
fi
done
cd $CWD
eval $*