如何将 docker-compose 中的卷绑定到主机目录?

发布于 2025-01-18 13:48:32 字数 452 浏览 3 评论 0原文

我已经尝试过此操作,但是当我在卷中更改文件时,它似乎并没有同步。

version: "3.7"
services:
  web:
    image: someimage
    volumes:
      - code:/code

volumes:
  code:
    driver: local
    driver_opts:
      o: bind
      type: none
      device: /Users/me/work/web

我不想做

services:
  web:
    image: someimage
    volumes:
      - /Users/me/work/web:/code

我做错了什么?

我正在使用Mac,Windows和Linux。但是目前在Mac 12.3.1上测试

I have tried this but it doesn't seem to sync files when I change them inside the volume.

version: "3.7"
services:
  web:
    image: someimage
    volumes:
      - code:/code

volumes:
  code:
    driver: local
    driver_opts:
      o: bind
      type: none
      device: /Users/me/work/web

I don't want to do

services:
  web:
    image: someimage
    volumes:
      - /Users/me/work/web:/code

What am I doing wrong?

I am using mac, windows and linux. But currently testing on a mac 12.3.1

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文