forked from 1tgr/rust-websocket-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
35 lines (30 loc) · 857 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
version: '3.2'
services:
fuzzingserver:
image: 1tgr/websocket-lite
command: wstest -m fuzzingserver --spec config/fuzzingserver.json
volumes:
- ./config:/app/config
- ./reports:/app/reports
python-hello-world-server:
image: 1tgr/websocket-lite
command: python3 /app/hello_world_server.py
volumes:
- ./hello_world_server.py:/app/hello_world_server.py
hyper-autobahn-server:
image: 1tgr/websocket-lite
command: ./autobahn-server
hyper-hello-world-server:
image: 1tgr/websocket-lite
command: ./hello-world-server 9001
test:
image: 1tgr/websocket-lite
command: ./test.sh
depends_on:
- fuzzingserver
- python-hello-world-server
- hyper-hello-world-server
volumes:
- ./config:/app/config
- ./reports:/app/reports
- ./test.sh:/app/test.sh