Hello,
I'm pretty fresh to docker and pipelines. I'm using them to build my application that also has some integration tests, that talk to the mongodb.
I'm glad to here that it is possible to add additional service to pipelines, however I'm facing issues while trying to do so.
Could you point where do I make a mistake?
image: spittet/node-mongodb pipelines: default: - step: script: - npm install mongoose - service mongod start image: java:8 pipelines: branches: master: - step: script: - bash ./gradlew build
Thanks in advance for any tips!
Cheers,
MK