Welcome to mirror list, hosted at ThFree Co, Russian Federation.

docker-compose.yml « HttpStress « StressTests « tests « System.Net.Http « libraries « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f64eb3009b154c477166ad8e74ea545136a40066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
version: '3'
services:
  client:
    image: ${HTTPSTRESS_IMAGE:-httpstress}
    links:
      - server
    environment:
      - HTTPSTRESS_ARGS=-runMode client -serverUri https://server:5001 ${HTTPSTRESS_CLIENT_ARGS}
  server:
    image: ${HTTPSTRESS_IMAGE:-httpstress}
    ports:
      - "5001:5001"
    environment:
      - HTTPSTRESS_ARGS=-runMode server -serverUri https://+:5001 ${HTTPSTRESS_SERVER_ARGS}