-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathdocker-compose.yml
62 lines (62 loc) · 1.35 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
version: "3"
services:
nameles-streaming:
image: apastor/nameles-streaming
ports:
- "5430:5430"
expose:
- "58510"
networks:
- default
restart: "no"
environment:
- RCV_PORT=58510
- NOTIFY_SOCKETS=scoring-module:58520
- DB_IP=127.0.0.1
- DB_USER=nameles
- DB_PWD=""
- DB_NAME=nameles
- NWORKERS=2
- MAX_MSGS=1000
- PYTHON_SCRIPT_NAME=/nameles-streaming/src/nameles-endofday.py
scoring-module:
image: apastor/nameles-scoring-module
expose:
- "58520"
networks:
- default
restart: "no"
environment:
- DSP_IP=dsp-latency-test
- SND_PORT=58505
- RCV_PORT=58501
- FWD_PORT=58510
- DB_IP=nameles-streaming
- DB_USER=nameles
- DB_PWD=""
- DB_NAME=nameles
- DB_DAY=161201
- WORKERS=4
- MIN_TOTAL=250
dsp-latency-test:
image: apastor/nameles-dsp-emulator
expose:
- "58501"
- "58505"
networks:
- default
restart: "no"
environment:
- DELAY_START=40
- SND_PORT=58501
- RCV_PORT=58505
- DOMAINS_FILE=domain-list.txt
- IPS_FILE=ip-list.txt
- DB_IP=<database_host>
- DB_PORT=5430
- DB_USER=nameles
- DB_PWD=""
- DB_NAME=nameles
- DB_DAY=<day_of_input_data>
- MPS=1000
- TEST_TIME=20