From 7599230784a7be2aa9e05999e86516031efa5541 Mon Sep 17 00:00:00 2001 From: jonsadev Date: Thu, 3 Jan 2019 11:32:05 -0700 Subject: [PATCH] server: Add documentation to a probable issue when running sbt test --- server/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server/README.md b/server/README.md index 3ec0b0c..497c121 100644 --- a/server/README.md +++ b/server/README.md @@ -13,3 +13,7 @@ ## Test Run the `sbt test` command to execute the tests. + +In case of failed tests, verify that: +- The docker remote API is enabled (this command must succeed `curl localhost:4243/containers/json` on linux). +- Try running `DOCKER_HOST=localhost:4243 sbt test` instead.