gpt4 book ai didi

python - 在 Docker 中根据更改重新启动 Flask 应用程序

转载 作者:太空宇宙 更新时间:2023-11-04 08:46:16 30 4
gpt4 key购买 nike

我正在使用 flask-script 来运行我的应用程序:

if __name__ == "__main__":
manager.run()

在 docker 中我有以下内容:

CMD [ "python", "manage.py", "runserver", "-h", "0.0.0.0", "-p", "5000"]

现在,当我构建并运行我的容器时,应用程序运行良好。但是,如果我对我的代码进行更改并保存,尽管我的环境设置了 DEBUG=True 变量,但应用程序不会重新启动。我在这里遗漏了什么吗?

docker 文件:

FROM python:3.4-slim

RUN apt-get update -y && \
apt-get install -y \
python-pip \
python-dev \
pkg-config \
libpq-dev \
libfreetype6-dev

COPY ./requirements.txt /app/requirements.txt

WORKDIR /app

RUN pip3 install -r requirements.txt

COPY . /app

CMD [ "python", "manage.py", "runserver"]

最佳答案

COPY说明

copies new files or directories from <src> and adds them to the filesystem of the container at the path <dest>.

这意味着图像具有构建图像时文件的快照。当您从该图像启动容器时,它将在其文件系统中看到您的文件副本。修改原始文件不会对容器内的副本产生任何影响,应用程序不会看到这些更改,也不会重新启动。


如果你想在容器内改变文件,你可以mount a host directory as a volume .也来自文档

This command mounts the host directory, /src/webapp, into the container at /webapp. If the path /webapp already exists inside the container’s image, the /src/webapp mount overlays but does not remove the pre-existing content. Once the mount is removed, the content is accessible again.

Docker 运行命令可能看起来像这样

docker run -d -v /absolute/path/to/src:/app <image-name>

然后你的文件更改应该反射(reflect)在容器内的文件中(因为它们将是相同的文件)并且一切都应该按预期重新启动。


您可能也对这篇文章感兴趣Dockerize a Flask, Celery, and Redis Application with Docker Compose .它更进一步,使用 Docker Compose 编排 Flask 开发环境。

关于python - 在 Docker 中根据更改重新启动 Flask 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40250199/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com