From: Martin Skorupski Date: Wed, 5 Apr 2023 15:21:59 +0000 (+0200) Subject: Automate injection of 3GPP yaml files X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=314c58f62ac2749bbfebb82a6cdd8032cb7c8cad;p=oam.git Automate injection of 3GPP yaml files - change in README related to latest docker compose version Issue-ID: OAM-324 Change-Id: Ie414bce3c6ed7edfb20e7c43f1deb6b089ee11a0 Signed-off-by: Martin Skorupski --- diff --git a/solution/README-O-RU-Controller.md b/solution/README-O-RU-Controller.md index 56c15db..c57a696 100644 --- a/solution/README-O-RU-Controller.md +++ b/solution/README-O-RU-Controller.md @@ -32,8 +32,8 @@ Please follow the required docker daemon configuration as documented in the foll ### Docker Compose ``` -$ docker-compose version -Docker Compose version v2.16.0 +$ docker compose version +Docker Compose version v2.17.2 ``` ### GIT @@ -95,10 +95,10 @@ The following commands should be invoked. More detailed can be found in the next chapters. ``` -docker-compose -f smo/common/docker-compose.yml up -d +docker compose -f smo/common/docker-compose.yml up -d python smo/common/identity/config.py -docker-compose -f smo/oam/docker-compose.yml up -d odlux controller -docker-compose -f network/docker-compose.yml up -d ntsim-ng-o-ru-fh-11221 +docker compose -f smo/oam/docker-compose.yml up -d odlux controller +docker compose -f network/docker-compose.yml up -d ntsim-ng-o-ru-fh-11221 python network/config.py ``` @@ -131,7 +131,7 @@ In the O-RU Controller UI you should see the generated alarm notifications of th To stop all container please respect the following order ``` -docker-compose -f network/docker-compose.yml down -docker-compose -f smo/oam/docker-compose.yml down -docker-compose -f smo/common/docker-compose.yml down +docker compose -f network/docker-compose.yml down +docker compose -f smo/oam/docker-compose.yml down +docker compose -f smo/common/docker-compose.yml down ```