docker container with an asterisk instance which replies to all calls and records them
Go to file
Paolo Asperti 1ad16ad2f2
added some modules
2022-06-28 17:53:21 +02:00
root added some modules 2022-06-28 17:53:21 +02:00
.drone.yml drone update 2021-12-12 12:42:12 +01:00
.gitignore initial release 2019-01-01 23:34:16 +01:00
Dockerfile OS upgrade 2021-12-12 12:40:01 +01:00
LICENSE Initial commit 2019-01-01 22:35:52 +00:00
README.md updated readme 2019-01-01 23:42:45 +01:00

README.md

sip-recorder

docker container with an asterisk instance which replies to all calls and records them

building

docker build -t sip-recorder .

running

# first get your IP address
IP=$(ip addr show eth0 |grep '^\s*inet\ ' | sed 's/.*inet\ \([0-9]*\.[0-9]*\.[0-9]*\.[0-9]*\).*/\1/')

# then start the container
docker run -d --name sip-recorder \
-v "$PWD/recordings:/recordings" \
-v "$PWD/recordings-csv:/var/log/asterisk/cdr-custom" \
-p 5060:5060/udp -p 15000-15100:15000-15100/udp \
-e "SIP_PASS=mypassword" \
-e "SIP_USER=myuser" \
-e "SIP_SERVER=sip.provider.com" \
-e "EXTERNAL_IP=$IP" \
sip-recorder