docker-maven-plugin を使用して、リモート リポジトリからイメージを実行しています。
イメージは docker:start を使用して実行されていますが、ボリュームが機能していないようです。
groovy (jenkins) を使用してコマンドを実行します。
sh(script:"mvn -B -gs ${cfg} -f lib/pom.xml docker:start", returnStatus: true)
私の pom.xml コードは次のとおりです。
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>0.31.0</version>
<configuration>
<images>
<image>
<name>imageName:latest</name>
<run>
<volumes>
<bind>
<volume>/inputs:/inputs</volume>
<volume>/out:/out</volume>
<volume>/env:/env</volume>
</bind>
</volumes>
</run>
</image>
</images>
</configuration>
</plugin>
何がうまくいかないのですか?