mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
11 lines
212 B
Bash
Executable File
11 lines
212 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
# Kill background processes on exit
|
|
trap 'kill -9 $(jobs -p)' SIGINT SIGTERM EXIT
|
|
|
|
export DOCKER_HOST=tcp://localhost:4243
|
|
orchard proxy -H $TRAVIS_JOB_ID $DOCKER_HOST &
|
|
sleep 2
|
|
nosetests -v
|