Trying to get cudu Docker Image running #360
-
Hi, I was trying to run the Docker Image that is published on DockerHub by softwareradiosystems on https://hub.docker.com/r/softwareradiosystems/srsran-cu-du-ubi8/tags I downloaded the Image with the following command which should be the latest version "docker pull softwareradiosystems/srsran-cu-du-ubi8:2023.5_1.0.4" This image was referenced in the srsRAN Project tutorial PDF page 85, but does not provide any further instructions on how to run the docker image, After starting the container with a simple "docker run imageID" we are unsure if those previous commands need to be run with specific parameters or if we need to start services by running a "gnb -c /opt/srsgnb/etc/gnb_rf_b210_fdd_srsUE.yml" like command, Thanks a head of time |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello @edeandae! The image above is an old version of srsRAN which was uploaded for the Red Hat container registry. We have just published new images based on Ubuntu 2204 for Split 8 (with UHD) and Split 7.2 (OFH). The new docker images are available in our Docker repository [1]. We have also published the dockerfiles we use the build those images. They are located in the srsRAN Project Helm repo [2] in the cd images/Ubuntu-2204/UHD Inside the docker container the srsRAN CU/DU can be run using the command You can also use the docker-compose scripts we have added to the srsRAN Project repo [3]. You will find everything necessary in the [1] https://hub.docker.com/u/softwareradiosystems |
Beta Was this translation helpful? Give feedback.
Hello @edeandae!
The image above is an old version of srsRAN which was uploaded for the Red Hat container registry. We have just published new images based on Ubuntu 2204 for Split 8 (with UHD) and Split 7.2 (OFH). The new docker images are available in our Docker repository [1]. We have also published the dockerfiles we use the build those images. They are located in the srsRAN Project Helm repo [2] in the
images
directory. I advice to build the images yourself instead of pulling the pre-build ones. This will ensure that the docker image you are using uses all available CPU capabilities. The following commands show how to build and run the docker image for Split 8 with UHD.cd images/Ubu…