skip to main content
Running the Container
We recommend you create the env file and run the following commands in the home directory (simply type cd to get there).
To run the container
*Use the following command to run the container image from your Telephony host node.
mkdir -p telephony-logs
docker run --detach \
--net=host \
--volume $(pwd)/certs:/usr/local/share/ca-certificates \
--name telephony \
--env-file env \
--restart always \
-v $(pwd)/telephony-logs:/home/gateway/ice/logs \
--log-driver json-file \
--log-opt max-size=1g \
instantconnect/gateway:3.5.7732 \
&& docker exec -it telephony update-ca-certificates
*Useful commands for viewing the status include:
docker container ls -a
docker ps -a
docker stats
To restart/stop/remove the telephony container
*If you need to restart and/or stop and remove the telephony container:
docker restart telephony && docker stop telephony && docker rm telephony
Important: Removing container with docker rm telephony would not reclaim disk space. Docker images can consume large amounts of disk space. Consult the official Docker Docs website to learn how to remove unused Docker images with the docker image prune -a command. docker system prune -a will also clean up unused containers and images but exercise caution in deleting containers that are in use.
To view logs on console
*Execute the following command
docker logs telephony
To see TCP/UDP port utilization
*Execute the following command:
netstat -anp | grep ice-gw