问题:
No plugin found for prefix 'docker' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repositories
解决方法:Maven的配置文件settings.xml,添加<pluginGroup>com.spotify</pluginGroup>
<settings>
<pluginGroups>
<pluginGroup>com.spotify</pluginGroup>
</pluginGroups>
</settings>