Outbound Dialer
Changes required:
-
Navigate to the existing outbound-dialer directory:
cd outbound-dialer -
Open the Docker Compose file:
vi docker-compose.yml -
Update the outbound dialer tag in the docker-compose.yml file, and run/start this Docker image.
# Outbound Dialer: rtc/outbound-dialer tag: 5.11.0 -
Save and exit the file by pressing Esc, entering
:wq, and pressing Enter. -
docker compose up -d
Voice Connector
The Voice Connector is deployed as a Docker image. Update it to tag 5.11.0 as follows.
-
Navigate to the existing Voice Connector directory:
cd voice-connector -
Open the Docker Compose file:
vi docker-compose.yml -
Update the image tag to 5.11.0. The file should look like this:
version: "3.8" services: voice-connector: image: gitimages.expertflow.com/freeswitch/ecx_generic_connector:5.11.0 deploy: resources: limits: memory: 1024m reservations: memory: 256m container_name: unified-voice-connector ports: - 8115:8080 env_file: - ./env.txt command: ["java", "-Xms256m", "-Xmx1024m", "-XX:+UseG1GC", "-XX:MinHeapFreeRatio=10", "-XX:MaxHeapFreeRatio=30", "-jar", "/app/ecx_generic_connector.jar"] restart: always -
Save and exit the file by pressing Esc, entering
:wq, and pressing Enter. -
Start the updated container:
docker compose up -d --build