Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note: In general, there is no need to build the images manually. All images for the release are available in nexus image repositories.  Please refer to the page  Draft - Release E - Run for running the release E Non-RT RIC.  

Details of the architecture can be found from Release E page. FIXME: Page for Release E? 

Table of Contents

Project Requirements

...

Download the nonrtric repo (defaults to master branch):    FIXME: branch name

     git clone "https://gerrit.o-ran-sc.org/r/nonrtric"
git checkout dawn --track
origin/dawn-b <branch-name>

Build the code and create docker images

...

Download the nonrtric repo (defaults to master branch):   FIXME: branch name

     git clone "https://gerrit.o-ran-sc.org/r/portal/nonrtric-controlpanel"
git checkout dawn --track origin/dawn-b <branch-name>

Build the code and create docker

...

images  FIXME:Keep this block if the build can me transformed into one step mvn clean install

To build docker images of the gateway and the controlpanel

...

FIXME:REMOVE THE BLOCK BELOW

Build the code and create docker images

Code Block
languagebash
cd nonrtric-controlpanel/nonrtric-gateway
mvn clean install  -Dmaven.test.skip=true
docker build --build-arg JAR=nonrtric-gateway-1.0.0-SNAPSHOT.jar -t o-ran-sc/nonrtric-gateway:1.1.0-SNAPSHOT .

cd nonrtric-controlpanel/webapp-frontend
docker build -t o-ran-sc/nonrtric-controlpanel:2.3.0-SNAPSHOT .

...