123456789101112131415161718192021222324 |
- version: '3'
- services:
- sky-gistools-server:
- container_name: operation_management_center
- image: operation_management_center:1.0.0
- ports:
- - "5001:5000"
- environment:
- - UWSGI_PROCESSES=8
- - UWSGI_ENABLE_THREADS=true
- - UWSGI_HTTP_PROCESSES=4
- - UWSGI_HTTP_KEEPALIVE=false
- - UWSGI_HARAKIRI=600
- - UWSGI_PY_OPTIMIZE=0
- volumes:
- - /data:/data
- privileged: true
- restart: always
|