1234567891011121314151617181920212223242526272829303132 |
- 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
- # 代理服务地址
- - NatGeo_World_Map=https://server.arcgisonline.com/arcgis/rest/services/NatGeo_World_Map/MapServer
- - USA_Topo_Maps=https://server.arcgisonline.com/arcgis/rest/services/USA_Topo_Maps/MapServer
- - World_Imagery=https://server.arcgisonline.com/arcgis/rest/services/World_Imagery/MapServer
- - World_Physical_Map=https://server.arcgisonline.com/arcgis/rest/services/World_Physical_Map/MapServer
- - World_Shaded_Relief=https://server.arcgisonline.com/arcgis/rest/services/World_Shaded_Relief/MapServer
- - World_Street_Map=https://server.arcgisonline.com/arcgis/rest/services/World_Street_Map/MapServer
- - World_Terrain_Base=https://server.arcgisonline.com/arcgis/rest/services/World_Terrain_Base/MapServer
- - World_Topo_Map=https://server.arcgisonline.com/arcgis/rest/services/World_Topo_Map/MapServer
- - 3DModel=http://192.168.1.1:80/3DTiles/qp/QPXZFWZX/JJ
- volumes:
- - D:\data/logs:/data/logs
- privileged: true
- restart: always
|