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: e0e17c1f9425d28acb24abcf78e1d9b06cae1143 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
version: '3'
services:
  client:
    build:
      context: .
      dockerfile: ${DOCKERFILE:-Dockerfile}
    image: httpstress
    links:
      - server
    environment:
      - HTTPSTRESS_ARGS=-runMode client -serverUri https://server:5001 ${HTTPSTRESS_CLIENT_ARGS}
  server:
    build:
      context: .
      dockerfile: ${DOCKERFILE:-Dockerfile}
    image: httpstress
    ports:
      - "5001:5001"
    environment:
      - HTTPSTRESS_ARGS=-runMode server -serverUri https://+:5001 ${HTTPSTRESS_SERVER_ARGS}