2020-01-14 16:01:14 +02:00
|
|
|
version: '2'
|
|
|
|
|
|
|
|
services:
|
2020-01-14 16:08:34 +02:00
|
|
|
freepbx:
|
|
|
|
container_name: freepbx
|
2020-01-14 16:01:14 +02:00
|
|
|
image: tiredofit/freepbx
|
2020-01-14 18:12:17 +02:00
|
|
|
ports:
|
|
|
|
- 8012:80
|
|
|
|
- 5060:5060
|
|
|
|
- 5160:5160
|
|
|
|
- 18000-18100:18000-18100/udp
|
|
|
|
#### Flash Operator Panel
|
|
|
|
- 4445:4445
|
2020-01-14 16:01:14 +02:00
|
|
|
volumes:
|
|
|
|
- /docker/freepbx/certs:/certs
|
|
|
|
- /docker/freepbx/data:/data
|
|
|
|
- /docker/freepbx/logs:/var/log
|
|
|
|
- /docker/freepbx/www:/var/www/html
|
|
|
|
- /docker/freepbx/db:/var/lib/mysql
|
|
|
|
|
|
|
|
environment:
|
|
|
|
- RTP_START=18000
|
|
|
|
- RTP_FINISH=18100
|
|
|
|
- DB_EMBEDDED=TRUE
|
|
|
|
|
|
|
|
restart: always
|
|
|
|
|
|
|
|
### These final lines are for Fail2ban. If you don't want, comment and also add ENABLE_FAIL2BAN=FALSE to your environment
|
|
|
|
cap_add:
|
|
|
|
- NET_ADMIN
|
|
|
|
privileged: true
|