Docker撰写“热重载”问题

时间:2018-12-17 05:57:13

标签: docker flask docker-compose

虽然我看到了其他问题-到目前为止,没有任何提议的解决方案或文档对我有帮助。抱歉,如果这有点多余。

我正在尝试在docker-compose.yml文件中装载一个卷,以便在进行更改时“热重载”我的代码。我正在运行烧瓶应用程序。我的文件结构如下:

├── celery_queue
│   ├── Dockerfile
│   ├── requirements.txt
│   └── tasks.py
├── docker-compose.yml
├── my_test_app
│   ├── Dockerfile
│   ├── app
│   │   ├── __init__.py
│   ├── my_test_app.py
│   ├── requirements.txt
│   └── worker.py
├── run.sh
└── stop.sh

我的docker-compose.yml

version: "3"
services:
  redis:
    image: "redis:alpine"
  web:
    build:
      context: ./my_test_app
      dockerfile: Dockerfile
    restart: always
    volumes:
      - ./my_test_app:/my_test_app
    ports:
     - "5000:5000"
    depends_on:
      - redis
  worker:
    build:
      context: celery_queue
      dockerfile: Dockerfile
    depends_on:
      - redis
  monitor:
    build:
      context: celery_queue
      dockerfile: Dockerfile
    ports:
     - "5555:5555"
    entrypoint: flower
    command:  -A tasks --port=5555 --broker=redis://redis:6379/0
    depends_on:
      - redis

最后-Dockerfile目录中的my_test_app

FROM python:3.6-alpine

ENV CELERY_BROKER_URL redis://redis:6379/0
ENV CELERY_RESULT_BACKEND redis://redis:6379/0
ENV C_FORCE_ROOT true

ENV HOST 0.0.0.0
ENV PORT 5000
ENV DEBUG true

ADD . /my_test_app
WORKDIR /my_test_app

# install requirements
RUN pip install --upgrade pip && \
    pip install -r requirements.txt

# expose the app port
EXPOSE 5000

RUN pip install gunicorn

# run the app server
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "--workers", "3", "my_test_app:app"]

再次-我的目标是在my_test_app目录中编辑Flask代码,然后将其重新加载到我的容器中,而无需启动/停止。

提前感谢您的任何建议!

1 个答案:

答案 0 :(得分:1)

这实际上与我的Gunicorn命令有关,该命令需要一个--reload标志。

我用来解决该问题的步骤:

1)由于我使用的是OSX,因此我在Docker首选项中确认为该目录启用了文件共享。

2)我执行到容器中,以检查文件是否在代码更改时更新: docker exec -it my-container-name sh

3)它们正在按预期进行更新,因此我检查了gunicorn / flask文档。