0

为了将目录挂载到容器,我使用了绑定挂载https://docs.docker.com/storage/bind-mounts/ 现在我正在尝试找到一种替换$docker run -v命令的方法。

4

1 回答 1

0

如果您使用的是 kubernetes,因为它在您的标签中。您可以将卷挂载为主机路径。

在 Pod 规范中:

  volumeMounts:
    - name: config
      mountPath: <PATH IN CONTAINER>
  volumes:
    - name: config
      hostPath:
        path: <YOUR LOCAL DIR PATH>

查看https://kubernetes.io/docs/concepts/storage/volumes/了解更多详情

于 2021-09-23T07:44:54.573 回答