我正在尝试在我的 bitbucket 管道上添加 mongodb,但出现以下错误:
Uncaught MongoError: failed to connect to server [localhost:27017] on first connect
我的 bitbucket-pipelines.yml:
image: leeduc/pipelines-node-mongo
pipelines:
default:
- step:
script
- npm install
- npm test
- npm run eslint
有什么想法可以解决吗?