Fix path of the parent dir of COMPOSE_FILE

Signed-off-by: Albin Kerouanton <albin.kerouanton@knplabs.com>
This commit is contained in:
Albin Kerouanton 2016-10-25 11:06:39 +02:00
parent 8b5782ba9f
commit 99343fd76c

View File

@ -35,7 +35,7 @@ if [ "$(pwd)" != '/' ]; then
VOLUMES="-v $(pwd):$(pwd)"
fi
if [ -n "$COMPOSE_FILE" ]; then
compose_dir=$(dirname $COMPOSE_FILE)
compose_dir=$(realpath $(dirname $COMPOSE_FILE))
fi
# TODO: also check --file argument
if [ -n "$compose_dir" ]; then