情景是;我有一个文件夹static
,它包含一个名为sample_old.txt
的文件,并使用static
将docker-compose.yml
挂载到容器中。然后我使用docker-compose up
启动我的docker服务。然后调用一个函数在sample_new.txt
文件夹中创建一个名为static
的新文件。结果,它在static中生成了新文件(通过使用sudo docker exec -it container_id bash
进入容器进行验证)但是问题是,新生成的文件只能在不在主机操作系统中的容器中使用。
如何使容器内新生成的文件可用于托管?我可以一直同步目录吗?我不知道是否可能。如果可能请提供解决方案
的搬运工-compose.yml
version: "3"
services:
web:
build:
context: .
dockerfile: Dockerfile
command: "python my_celery.py"
ports:
- "8000:8000"
networks:
- webnet
volumes:
- .:/celery_sample
- /static:/celery_sample/static
networks:
webnet:
目录结构 - 主机操作系统
.
├── docker-compose.yml
├── Dockerfile
├── __init__.py
├── my_celery.py
├── README.md
├── requirements.txt
└── static
└── sample_old.txt
目录结构 - 容器
.
├── docker-compose.yml
├── Dockerfile
├── __init__.py
├── my_celery.py
├── README.md
├── requirements.txt
└── static
└── sample_old.txt
└── sample_new.txt
用于文件生成的烧瓶功能
@flask_app.route('/text')
def generate_file():
file_dir_path = os.path.join(os.getcwd(), "static")
if not os.path.exists(file_dir_path):
os.mkdir(file_dir_path)
with open(os.path.join(file_dir_path, "sample_new.txt"), "wb+") as fo:
fo.write("This is just s test".encode())
return "Writed to file"
答案 0 :(得分:3)
问题出在docker-compose.yml
文件中,定义不明确;您在.
挂载点的定义中缺少static
,它应该是./static
,因为它位于当前工作目录中。
services:
web:
...
- ./static:/celery_sample/static
答案 1 :(得分:0)
我在工作中使用了很棒的docker-sync库,我喜欢它用于开发和双向数据同步。它使用Unison快速同步容器和本地文件之间的文件。