1234567891011121314151617181920212223 |
- service:
- container_name: proxy_nginx_server
- image: proxy_nginx_server:1.0.0
- ports:
- - "5000:5000"
- environment:
- - UWSGI_PROCESSES=4
- - UWSGI_ENABLE_THREADS=true
- - UWSGI_HTTP_PROCESSES=2
- - UWSGI_HTTP_KEEPALIVE=false
- - UWSGI_HARAKIRI=20
- - UWSGI_PY_OPTIMIZE=0
- volumes:
- - D:\code\proxy_nginx_server\src\config.py:/work/nginx_agent/src/configs/config.py
- - D:\data/logs:/data/logs
- privileged: true
- restart: always
|