Cannot use service `rethinkdb`: `... didn't respond in timely maner: 30s Consider modifying wait_for_services_timeout`
Here is the build log ``` Using Docker executor with image golang:1.4 ... Starting service postgres:9.4 ... Starting service rethinkdb:2.1 ... Waiting for services to be up and running... Service runner-140129db-project-1-concurrent-0-rethinkdb didn't respond in timely maner: 30s Consider modifying wait_for_services_timeout. Running on runner-140129db-project-1-concurrent-0 via ip-10-0-2-21... ``` Here is the config.toml ``` [[runners]] name = "golang" url = "<truncated>" token = "<truncated>" limit = 1 executor = "docker" wait_for_services_timeout = 300 [runners.docker] image = "golang" allowed_images = ["golang:*"] privileged = false volumes = ["/cache", "/root/.ssh:/root/.ssh"] allowed_services = ["postgres:*", "redis:*", "rethinkdb:*"] ``` Here is the the log when I manually run `docker run rethinkdb:2.1` ``` root@ip-10-0-2-21:~# docker run rethinkdb:2.1 Recursively removing directory /data/rethinkdb_data/tmp Initializing directory /data/rethinkdb_data Running rethinkdb 2.1.3~0jessie (GCC 4.9.1)... Running on Linux 3.13.0-63-generic x86_64 Loading data from directory /data/rethinkdb_data warn: Cache size does not leave much memory for server and query overhead (available memory: 857 MB). warn: Cache size is very low and may impact performance. Listening for intracluster connections on port 29015 Listening for client driver connections on port 28015 Listening for administrative HTTP connections on port 8080 Listening on addresses: 127.0.0.1, 172.17.1.172, ::1, fe80::42:acff:fe11:1ac%858 Server ready, "31772b71cc1a_5rt" 4d5863c4-ea86-4469-9992-a5d7a7a78b25 A newer version of the RethinkDB server is available: 2.1.4. You can read the changelog at <https://github.com/rethinkdb/rethinkdb/releases>. ```
issue