docker-compose.yml 525 B

12345678910111213141516171819202122232425
  1. service:
  2. container_name: coordinate_transformation
  3. image: coordinate_transformation:1.0.0
  4. ports:
  5. - "5000:5000"
  6. environment:
  7. - UWSGI_PROCESSES=8
  8. - UWSGI_ENABLE_THREADS=true
  9. - UWSGI_HTTP_PROCESSES=4
  10. - UWSGI_HTTP_KEEPALIVE=false
  11. - UWSGI_HARAKIRI=600
  12. - UWSGI_TIMEOUT=600
  13. - UWSGI_PY_OPTIMIZE=0
  14. volumes:
  15. # - /data/logs:/data/logs # 日志
  16. - ./config:/work/coordinate_transformation/config # 配置文件目录,包括软件配置信息
  17. privileged: true
  18. restart: always