aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/net/websocket/tests/autobahn/docker-compose.yml
blob: 30b58ec6ecd4df57c6fc96c8cfa92b08004c5e2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
version: '3'
services:
  server:
    container_name: autobahn_server
    build: fuzzing_server

    ports:
      - "9001:9001"
      - "8080:8080"
  server_wss:
    container_name: autobahn_server_wss
    build: fuzzing_server_wss

    ports:
      - "9002:9002"
      - "8081:8080"
  client:
    container_name: autobahn_client
    build: 
      dockerfile: vlib/net/websocket/tests/autobahn/ws_test/Dockerfile 
      context: ../../../../../