1234567891011121314151617181920212223242526 |
- version: '3'
- services:
- sky-gistools-server:
- container_name: coordinate_transformation
- image: coordinate_transformation:1.0.0
- ports:
- - "5000:5000"
- environment:
- - UWSGI_PROCESSES=8
- - UWSGI_ENABLE_THREADS=true
- - UWSGI_HTTP_PROCESSES=4
- - UWSGI_HTTP_KEEPALIVE=false
- - UWSGI_HARAKIRI=600
- - UWSGI_TIMEOUT=600
- - UWSGI_PY_OPTIMIZE=0
- volumes:
- # - /data/logs:/data/logs # 日志
- - ./config:/work/coordinate_transformation/config # 配置文件目录,包括软件配置信息
- privileged: true
- restart: always
|