1 2 3 4 5 6 7 8 9 10 11 12
version: '3' services: nginx: image: nginx:latest container_name: performance-test-nginx-server volumes: - ./conf/nginx.conf:/etc/nginx/nginx.conf - ./ssl/:/etc/nginx/ssl/ - ./static/:/usr/share/nginx/html/ ports: - 80:80 - 443:443