From a47a4ac30463c08fee708ffe9a76577bbdc8b6b0 Mon Sep 17 00:00:00 2001 From: Liviu Chircu Date: Tue, 5 Nov 2024 16:40:28 +0200 Subject: [PATCH] Getting started: Add instructions on setting local IP address --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index eb1c8cd..9098623 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,10 @@ The simplest way to get the project running is to setup [Docker](https://www.doc ``` shell git clone --recursive https://github.com/OpenSIPS/opensips-softswitch-ce.git cd softswitch + +# configure your private IP address before launching the containers +MY_IP=10.0.0.23; sed -i 's/HOST_IP=.*/HOST_IP='$MY_IP'/g' .env + docker compose up ```