我正在使用 Jib 的 Maven 插件构建一个容器。
我有一个/tmp/folder/file.json
在我的主机上调用的文件,我需要能够从容器内部读取它。
我尝试/tmp/folder
使用卷功能安装:
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>1.0.0</version>
<configuration>
<to>
<image>myimage</image>
</to>
<container>
<volumes>
<volume>/tmp/folder</volume>
</volumes>
</container>
</configuration>
</plugin>
我认为/tmp/folder
可以从容器中访问,但file.json
不是。至少当我尝试这个时
docker exec -it my_cotainer /bin/ls /tmp/folder
什么都没有回来。
我是否正确使用了卷功能?