-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathdocker-compose-self-service.yml
More file actions
64 lines (51 loc) · 2.13 KB
/
Copy pathdocker-compose-self-service.yml
File metadata and controls
64 lines (51 loc) · 2.13 KB
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
63
64
version: '2'
services:
sip.orchestrator:
image: icr.io/voice-gateway/sip-orchestrator:latest
container_name: voice-gateway-so
ports:
- "5060:5060"
- "5060:5060/udp"
environment:
# Host name of the CMR.
- MEDIA_RELAY_HOST=media.relay:8080
- SIP_HOST=${EXTERNAL_IP}
- WATSON_CONVERSATION_URL=
# For supporting older version use the following instead of ASSISTANT_ID
# - WATSON_CONVERSATION_WORKSPACE_ID
- WATSON_ASSISTANT_ID=20ca9a0d-9421-457d-bd52-f1033739c097
# API Key for IBM Cloud Watson Assistant Service
- WATSON_CONVERSATION_APIKEY=
#If your account is associated with a username and password uncomment WATSON_CONVERSATION_USERNAME and WATSON_CONVERSATION_PASSWORD and fill out accordingly
#- WATSON_CONVERSATION_USERNAME=
#- WATSON_CONVERSATION_PASSWORD=
# Logging related variables
- ENABLE_TRANSCRIPTION_AUDIT_MESSAGES=true
- LOG_LEVEL=finest
media.relay:
image: icr.io/voice-gateway/media-relay:latest
container_name: voice-gateway-mr
ports:
- "16384-16394:16384-16394/udp"
environment:
- SDP_ADDRESS=${EXTERNAL_IP}
- RTP_UDP_PORT_RANGE=16384-16394
- MEDIA_RELAY_LOG_LEVEL=DEBUG
- MEDIA_RELAY_WS_PORT=8080
- WATSON_STT_URL=
# API Key for IBM Cloud Speech-To-Text Service
- WATSON_STT_APIKEY=
#If your account is associated with a username and password uncomment WATSON_STT_USERNAME and WATSON_STT_PASSWORD and fill accordingly
#- WATSON_STT_USERNAME=
#- WATSON_STT_PASSWORD=
- WATSON_TTS_URL=
# API Key for IBM Cloud Text-To-Speech Service
- WATSON_TTS_APIKEY=
#If your account is associated with a username and password uncomment WATSON_TTS_USERNAME and WATSON_TTS_PASSWORD and fill accordingly
#- WATSON_TTS_USERNAME=
#- WATSON_TTS_PASSWORD=
- WATSON_TTS_VOICE=en-US_MichaelVoice
# Uncomment the following three lines to enable call recording
#- ENABLE_RECORDING=true
#volumes:
#- $PWD/recordings:/vgw-media-relay/recordings