Graphic: How to adjust the HEP capture port in the Docker configuration to ensure anynode sends SIP data to the correct Homer 10 listener.

Modify the HEP Port

.yml files define how Docker services run and communicate. If your HEP receiver must use a different network port than the default, you change it directly in the .yml file to make sure anynode’s HEP traffic is routed correctly to the collector.

In our example

  • HOST port 9061

  • TCP transport

Open the .yml file with an text editor.

The default path is C:\homer-docker\all-in-one\docker-compose.yml

You can open a .yml file directly from PowerShell using any Windows text editor.

For example

C:\homer-docker\all-in-one\docker-compose.yml

Use a text editor

Find the heplify-server service and change the port mapping:

heplify-server:

ports:

- "9061:9060/tcp"

This means

  • Inside Docker, HepLify still listens on 9060 (default)

  • On your Windows host, it becomes 9061

Click on Save in the text editor.