Secondary docker image gets "Job was canceled"

version: 2
jobs:
  build:
    docker:
      - image: circleci/golang:1.9
      
      - image: redislabs/redisgraph:edge
        port: 6379:6379
        name: redisgraph

    working_directory: /go/src/github.com/RedisGraph/redisgraph-go
    steps:
      - checkout
      - run: go get -v -t -d ./...
      - run: go test -v ./...

Always getting “Job was canceled” on "
Container redislabs/redisgraph:edge"

See:
https://circleci.com/gh/RedisGraph/redisgraph-go/15#tests/containers/0

This is normal (not saying its good) … but it is not the reason why your build failed.

This is more of a UX issue because it looks like the service images dont exit cleanly.

Thanks you are right, the all issue was at the end of the day the fact I gave the image a name

name: redisgraph

And tried to access it in localhost… :blush:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.