Update 03-VoLTE-dockerized.md (#2763)

* Update 03-VoLTE-dockerized.md

adding "-" in docker-compose commands and added filename t the docker-compose command

* Adding up command to docker-compose

Need to bring docker images up to run the Open5Gs system.
This commit is contained in:
joereith 2023-11-29 16:41:46 -05:00 committed by GitHub
parent ab64ff9514
commit a4f8baa1f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 6 deletions

View File

@ -76,7 +76,7 @@ SGWU_ADVERTISE_IP --> Change this to value of DOCKER_HOST_IP set above only if e
If eNB is NOT running in the same docker network/host as the host running the dockerized Core + IMS then follow the below additional steps If eNB is NOT running in the same docker network/host as the host running the dockerized Core + IMS then follow the below additional steps
Under `mme` section in docker compose file (`docker-compose.yaml`, `nsa-deploy.yaml`), uncomment the following part Under `mme` section in docker-compose file (`docker-compose.yaml`, `nsa-deploy.yaml`), uncomment the following part
``` ```
... ...
@ -85,7 +85,7 @@ Under `mme` section in docker compose file (`docker-compose.yaml`, `nsa-deploy.y
... ...
``` ```
Under `sgwu` section in docker compose file (`docker-compose.yaml`, `nsa-deploy.yaml`), uncomment the following part Under `sgwu` section in docker-compose file (`docker-compose.yaml`, `nsa-deploy.yaml`), uncomment the following part
``` ```
... ...
@ -99,7 +99,8 @@ Under `sgwu` section in docker compose file (`docker-compose.yaml`, `nsa-deploy.
``` ```
cd docker_open5gs cd docker_open5gs
source .env source .env
docker compose build --no-cache docker-compose -f deploy-all.yaml build --no-cache
docker-compose -f deploy-all.yaml up
``` ```
#### 5. (Optional) Run srsENB in a separate container #### 5. (Optional) Run srsENB in a separate container
@ -111,15 +112,15 @@ srsENB separately.
``` ```
cd docker_open5gs cd docker_open5gs
source .env source .env
docker compose -f srsenb.yaml build --no-cache docker-compose -f srsenb.yaml build --no-cache
docker compose -f srsenb.yaml up docker-compose -f srsenb.yaml up
``` ```
#### 6. Configuration and register two UE #### 6. Configuration and register two UE
If there is a need to change the Core Network component configuration files If there is a need to change the Core Network component configuration files
found under their respective folder, make sure to re-compile images using found under their respective folder, make sure to re-compile images using
`docker compose build` again. `docker-compose build` again.
{: .notice--warning} {: .notice--warning}
Open (http://<DOCKER_HOST_IP>:3000) in a web browser, where <DOCKER_HOST_IP> is Open (http://<DOCKER_HOST_IP>:3000) in a web browser, where <DOCKER_HOST_IP> is