1
0
mirror of https://github.com/balkian/dotfiles.git synced 2025-08-23 08:02:19 +00:00

Added compose-run

This commit is contained in:
J. Fernando Sánchez
2015-09-22 17:24:14 +02:00
parent d829dd0959
commit 3f5da0dfe0
2 changed files with 24 additions and 0 deletions

21
scripts/.bin/compose-run Executable file
View File

@@ -0,0 +1,21 @@
#!/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 $*