Skip to content
Open
Show file tree
Hide file tree
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 bin/run-integration-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e
VINYLDNS_VERSION="0.10.4"

echo "Removing VinylDNS API if exists.."
if docker ps | grep -q "vinyldns-js-api"; then
if docker ps -a| grep -q "vinyldns-js-api"; then
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the -a is added for testing? If so, we can remove them.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this done purposely to pull all running docker container and stop which has the name vinyldns-js-api

docker kill vinyldns-js-api &> /dev/null || true
docker rm vinyldns-js-api &> /dev/null || true
echo "Removed VinylDNS API"
Expand Down
Loading