4

我使用 docker-compose(按照教程)创建了一个 dockerized django 应用程序。现在我想将一些包添加到 requirements.txt 并安装它们。这样做的正确方法是什么?

4

2 回答 2

3

从您指向的教程 - 声明

ADD requirements.txt /code/requirements.txt将文件从主机上的当前目录复制到容器/code/内的目录中。执行命令时docker-compose run,它首先构建容器,然后将“requirements.txt”文件加载到其中。

因此,如果您想对其进行更改,请在运行 compose 之前在本地进行。这将使用修改后的文件中的新包构建和运行您的 dockerized 应用程序requirements.txt

于 2015-05-24T02:50:10.200 回答
0

Go into your virtual environment. Your file name is requirements.txt

You need to type in the terminal

pip install -r requirements.txt

This should install all the packages listed in your requirements.txt

In case when some of your modules failed to install you have to manually install them.

于 2015-05-23T14:36:46.897 回答