我的Docker容器有Nginx,数据容器只有静态(JS,CSS)文件。 在应用启动时,Nginx使用volume_from从数据容器中安装卷。 当我想更新我的静态文件时出现问题,因为Nginx容器无法看到该卷已更改。 是否可以在不重新启动Nginx容器的情况下获取静态卷更改?
proxy:
image: proxy
volumes_from:
- static:ro
ports:
- "80:80"
restart: always
sequential_deployment: true
static:
image: static
volumes:
- /home/node/static/build
read_only: true
command: "true"