2014-12-19 02:20:59 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# see test-integration-cli for example usage of this script
|
|
|
|
|
|
|
|
export PATH="$DEST/../binary:$DEST/../dynbinary:$PATH"
|
|
|
|
|
|
|
|
if ! command -v docker &> /dev/null; then
|
|
|
|
echo >&2 'error: binary or dynbinary must be run before .integration-daemon-start'
|
|
|
|
false
|
|
|
|
fi
|
|
|
|
|
|
|
|
# intentionally open a couple bogus file descriptors to help test that they get scrubbed in containers
|
|
|
|
exec 41>&1 42>&2
|
|
|
|
|
2015-01-27 19:40:11 -05:00
|
|
|
export DOCKER_GRAPHDRIVER=${DOCKER_GRAPHDRIVER:-vfs}
|
|
|
|
export DOCKER_EXECDRIVER=${DOCKER_EXECDRIVER:-native}
|
2014-12-19 02:20:59 -05:00
|
|
|
|
2014-11-20 00:19:16 -05:00
|
|
|
if [ -z "$DOCKER_TEST_HOST" ]; then
|
2014-12-24 00:57:14 -05:00
|
|
|
( set -x; exec \
|
|
|
|
docker --daemon --debug \
|
|
|
|
--storage-driver "$DOCKER_GRAPHDRIVER" \
|
|
|
|
--exec-driver "$DOCKER_EXECDRIVER" \
|
|
|
|
--pidfile "$DEST/docker.pid" \
|
|
|
|
&> "$DEST/docker.log"
|
|
|
|
) &
|
2014-11-20 00:19:16 -05:00
|
|
|
else
|
2014-12-24 00:57:14 -05:00
|
|
|
export DOCKER_HOST="$DOCKER_TEST_HOST"
|
2014-11-20 00:19:16 -05:00
|
|
|
fi
|