Asterisk image running on Debian 13-slim (Trixie) Compiled full from source.
1.3K
Asterisk running on debiam 13-slim (Trixie)
Asterisk has been compiled from source with default menuselection. Only MENUSELECT_TESTS have been disabled.
Image already includes asterisk-core-sounds-it-wav-current. If you need more sounds download from https://downloads.asterisk.org/pub/telephony/sounds and unpack into valume mounted on /var/lib/asterisk/sounds/
Following a example of docker-compose.yaml to be used with:
docker compose up -d
docker-compose.yaml
services:
asterisk:
image: mariomastrorilli/asterisk:v23.2.2
container_name: asterisk
network_mode: host
restart: unless-stopped
volumes:
- ./config/pjsip.conf:/etc/asterisk/pjsip.conf
- ./config/extensions.conf:/etc/asterisk/extensions.conf
- ./config/ari.conf:/etc/asterisk/ari.conf
- ./config/http.conf:/etc/asterisk/http.conf
- ./config/rtp.conf:/etc/asterisk/rtp.conf
- ./config/modules.conf:/etc/asterisk/modules.conf
- ./config/indications.conf:/etc/asterisk/indications.conf
- ./data/sounds:/var/lib/asterisk/sounds
- ./data/sounds/custom:/var/lib/asterisk/sounds/custom
command: asterisk -fvvv
Content type
Image
Digest
sha256:e23996057…
Size
137.3 MB
Last updated
7 months ago
docker pull mariomastrorilli/asterisk