mirror of https://github.com/docker/cli.git
12 lines
269 B
Plaintext
12 lines
269 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
set -eu -o pipefail
|
||
|
|
||
|
if [[ -n "${REMOTE_DAEMON-}" ]]; then
|
||
|
# Run tests against a remote daemon.
|
||
|
./scripts/test/e2e/run fetch-images
|
||
|
./scripts/test/e2e/run test "${DOCKER_HOST-}"
|
||
|
else
|
||
|
# Run tests against dind.
|
||
|
./scripts/test/e2e/wrapper
|
||
|
fi
|