| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 | #!/bin/bash## Run docker-compose in a container## This script will attempt to mirror the host paths by using volumes for the# following paths:#   * $(pwd)#   * $(dirname $COMPOSE_FILE) if it's set#   * $HOME if it's set## You can add additional volumes (or any docker run options) using# the $COMPOSE_OPTIONS environment variable.#set -eVERSION="1.6.2"IMAGE="docker/compose:$VERSION"# Setup options for connecting to docker hostif [ -z "$DOCKER_HOST" ]; then    DOCKER_HOST="/var/run/docker.sock"fiif [ -S "$DOCKER_HOST" ]; then    DOCKER_ADDR="-v $DOCKER_HOST:$DOCKER_HOST -e DOCKER_HOST"else    DOCKER_ADDR="-e DOCKER_HOST -e DOCKER_TLS_VERIFY -e DOCKER_CERT_PATH"fi# Setup volume mounts for compose config and contextif [ "$(pwd)" != '/' ]; then    VOLUMES="-v $(pwd):$(pwd)"fiif [ -n "$COMPOSE_FILE" ]; then    compose_dir=$(dirname $COMPOSE_FILE)fi# TODO: also check --file argumentif [ -n "$compose_dir" ]; then    VOLUMES="$VOLUMES -v $compose_dir:$compose_dir"fiif [ -n "$HOME" ]; then    VOLUMES="$VOLUMES -v $HOME:$HOME -v $HOME:/root" # mount $HOME in /root to share docker.configfi# Only allocate tty if we detect oneif [ -t 1 ]; then    DOCKER_RUN_OPTIONS="-t"fiif [ -t 0 ]; then    DOCKER_RUN_OPTIONS="$DOCKER_RUN_OPTIONS -i"fiexec docker run --rm $DOCKER_RUN_OPTIONS $DOCKER_ADDR $COMPOSE_OPTIONS $VOLUMES -w "$(pwd)" $IMAGE "$@"
 |