# Docker Compose

If you want to roll your own box on-prem or in the cloud - you can use the public Docker image (opens new window).

TIP

The OVA Appliance is designed to be plug and play and is the recommended deployment method for most users. Only use Docker if you are comfortable with Linux. You will need to be careful to manage firewall rules, port 22 issues, potentially other concerns depending on your distribution of linux.

The example below runs on Ubuntu 18.0.4

2 Minutes to both install Docker, and create an account!

Once docker boots, visit http://localhost, Sign up with any login you like.

docker install

"Linux only: Change port 22 for CDR SFTP"

Because the image run a SFTP server, we need to change Linux's SSH port from 22 to 2222 (or any other port than 22). echo "Port 2222" >> /etc/ssh/sshd_config systemctl restart sshd.service

You will have to SSH to Linux on 2222 now, instead of 22.

# Grab the Docker Compose file and Launch the containers!

sudo snap install docker
sudo apt-get install docker-compose
mkdir calltelemetry
wget https://raw.githubusercontent.com/calltelemetry/calltelemetry/master/docker-compose.yml
cd calltelemetry
sudo docker-compose up
Last Updated: 3/5/2024, 10:04:43 PM