docker-compose.dev.yml 249 B

12345678910111213
  1. version: '3.8'
  2. services:
  3. web:
  4. environment:
  5. - FLASK_DEBUG=true
  6. volumes:
  7. # 开发模式:挂载代码实现热重载
  8. - .:/app
  9. - /app/venv
  10. # 开发模式不需要健康检查
  11. healthcheck:
  12. disable: true