agent {
docker {
image "xxx/yyyy-build:1.0.0"
args "--entrypoint /usr/bin/mongod"
}
}
However, docker pipeline ignores it. Here is the command from log
$ docker run -t -d -u 29307:1002 --entrypoint /usr/bin/mongod -i ..... --entrypoint cat xxx/yyy-build:1.0.0
Is there a workaround for this? If not, is it reasonable to file a feature request?
Thanks
-D