Commit 3bb76a1c authored by Raphael Defosseux's avatar Raphael Defosseux

doc(docker): adding tutorial on how to deploy RF sim with EPC

Signed-off-by: default avatarRaphael Defosseux <raphael.defosseux@eurecom.fr>
parent 07bb4b5a
This diff is collapsed.
...@@ -32,7 +32,7 @@ services: ...@@ -32,7 +32,7 @@ services:
entrypoint: /bin/bash -c "cqlsh --file /home/oai_db.cql 192.168.68.2 && echo 'OK'" entrypoint: /bin/bash -c "cqlsh --file /home/oai_db.cql 192.168.68.2 && echo 'OK'"
oai_hss: oai_hss:
image: oai-hss:develop-2021-06-14 image: oai-hss:latest
container_name: rfsim4g-oai-hss container_name: rfsim4g-oai-hss
privileged: true privileged: true
depends_on: [cassandra] depends_on: [cassandra]
...@@ -59,7 +59,7 @@ services: ...@@ -59,7 +59,7 @@ services:
retries: 5 retries: 5
oai_mme: oai_mme:
image: oai-mme:production image: oai-mme:latest
container_name: rfsim4g-oai-mme container_name: rfsim4g-oai-mme
privileged: true privileged: true
depends_on: [oai_hss] depends_on: [oai_hss]
...@@ -116,7 +116,7 @@ services: ...@@ -116,7 +116,7 @@ services:
retries: 5 retries: 5
oai_spgwc: oai_spgwc:
image: oai-spgwc:develop-2021-06-14 image: oai-spgwc:latest
privileged: true privileged: true
depends_on: [oai_mme] depends_on: [oai_mme]
container_name: rfsim4g-oai-spgwc container_name: rfsim4g-oai-spgwc
...@@ -148,7 +148,7 @@ services: ...@@ -148,7 +148,7 @@ services:
retries: 5 retries: 5
oai_spgwu: oai_spgwu:
image: oai-spgwu-tiny:develop-2021-06-14 image: oai-spgwu-tiny:latest
privileged: true privileged: true
container_name: rfsim4g-oai-spgwu-tiny container_name: rfsim4g-oai-spgwu-tiny
depends_on: [oai_spgwc] depends_on: [oai_spgwc]
...@@ -177,19 +177,6 @@ services: ...@@ -177,19 +177,6 @@ services:
timeout: 5s timeout: 5s
retries: 5 retries: 5
flexran_rtc:
image: flexran-rtc:production
privileged: true
container_name: rfsim4g-flexran-rtc
networks:
public_net:
ipv4_address: 192.168.61.10
healthcheck:
test: /bin/bash -c "pgrep rt_controller"
interval: 10s
timeout: 5s
retries: 5
trf_gen: trf_gen:
image: trf-gen:production image: trf-gen:production
privileged: true privileged: true
...@@ -235,6 +222,11 @@ services: ...@@ -235,6 +222,11 @@ services:
FLEXRAN_INTERFACE_NAME: eth0 FLEXRAN_INTERFACE_NAME: eth0
FLEXRAN_IPV4_ADDRESS: 192.168.61.10 FLEXRAN_IPV4_ADDRESS: 192.168.61.10
USE_ADDITIONAL_OPTIONS: --rfsim USE_ADDITIONAL_OPTIONS: --rfsim
healthcheck:
test: /bin/bash -c "pgrep lte-softmodem"
interval: 10s
timeout: 5s
retries: 5
oai_ue0: oai_ue0:
image: oai-lte-ue:develop image: oai-lte-ue:develop
...@@ -257,6 +249,11 @@ services: ...@@ -257,6 +249,11 @@ services:
MSISDN: '001011234561010' MSISDN: '001011234561010'
HPLMN: 20896 HPLMN: 20896
USE_ADDITIONAL_OPTIONS: --rfsim -C 2680000000 -r 25 --ue-rxgain 140 --ue-txgain 120 --nokrnmod 1 USE_ADDITIONAL_OPTIONS: --rfsim -C 2680000000 -r 25 --ue-rxgain 140 --ue-txgain 120 --nokrnmod 1
healthcheck:
test: /bin/bash -c "pgrep lte-uesoftmodem"
interval: 10s
timeout: 5s
retries: 5
networks: networks:
private_net: private_net:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment