Plugin for jenkins

Hi, are there recommendations for which of the several docker plugins to use with Jenkins.
I have been using the docker-build-step-plugin but this has stopped working since docker 1.2 as it uses HostConfig which has been removed.
I am not sure if a fix will be applied to that plugin so it might be time to look at other docker plugins for Jenkins.
Regards

I think it is now built in JEnkins itself so you don’t need a special plugin.
something like
docker.image[“ubuntu”].inside{
sh “echo hello”
}

I did an article recently with a step by step guide. It might be useful in your use case
Docker with Jenkins tutorial.