Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cherry-pick v20.07: test: add --build option for docker-compose up in test script (#6348) #6352

Merged
merged 1 commit into from
Sep 1, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contrib/scripts/functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function restartCluster {
fi

docker ps -a --filter label="cluster=test" --format "{{.Names}}" | xargs -r docker rm -f
GOPATH=$docker_compose_gopath docker-compose -p dgraph -f $compose_file up --force-recreate --remove-orphans -d || exit 1
GOPATH=$docker_compose_gopath docker-compose -p dgraph -f $compose_file up --force-recreate --build --remove-orphans -d || exit 1
popd >/dev/null

$basedir/contrib/wait-for-it.sh -t 60 localhost:6180 || exit 1
Expand Down