-
Notifications
You must be signed in to change notification settings - Fork 166
Closed
Labels
Description
Hello,
I have a small problems to run node-build-monitor with GitLab.
I use Docker in production, so I have a Dockerfile and a config.js like :
{
"monitor": {
"interval": 30000,
"numberOfBuilds": 12,
"latestBuildOnly": false,
"sortOrder": "date",
"debug": true
},
"services": [
{
"name": "GitLab",
"configuration": {
"url": "https://gitlab.mycompagny.fr",
"token": "myGitlabUserToken",
"additional_query": "&search=mygroup&starred=true",
"numberOfPipelinesPerProject": 3,
"slugs": [
{
"project": "mygroup/myproject",
"ref": "master"
},
{
"project": "mygroup/myproject",
"ref": "develop"
}
]
}
}
]
}
but I have no results on the website and in my docker logs I get :
$ docker logs --tail all node-build-monitor
warn: --minUptime not set. Defaulting to: 1000ms
warn: --spinSleepTime not set. Your script will exit if it does not stay up for at least 1000ms
9:32:37 AM | Check for builds...
9:32:37 AM | 0 builds found....
node-build-monitor 0.9.24 is listening on port 3000
9:33:07 AM | Check for builds...
9:33:07 AM | 0 builds found....
For information, my Gitlab uses a self-signed certificate.
Thank you for your help ;)