Autoscaling an Asterisk Cluster Using Docker Images – Part 1: Setting Up the Plumbing

Series Intro This series of articles will give you the information you need to standup a cluster of Asterisk servers using Docker containers, which we categorize as media servers where traffic will be load balanced by Kamailio. Part I Intro In this article we will configure the plumbing of the cluster and deploy a couple … Read more

Kamailio Quick Install Guide for v4.4

Kamailio 4.4 on CentOS 6. Are you looking for the CentOS 7.x version?  It can be found here Setup YUM Repository Install wget so we can pull down the rpm. yum install wget Let’s download the yum repo file for our Cent OS version. cd /etc/yum.repos.d/ wget http://download.opensuse.org/repositories/home:/kamailio:/v4.4.x-rpms/CentOS_6/home:kamailio:v4.4.x-rpms.repo Update system so yum is aware of … Read more

Creating a Docker file

The recommended way to create images for sharing is from a docker file. A docker file is essentially a script which can recreate the building of your image. We will go over how to create one for nginx on CentOS in this tutorial. Creating the docker file. It is recommended that each docker file is … Read more