Add other deployment files used along with custom deployment with eUPF
This commit is contained in:
29
custom_deployments/with_eupf/nr-gnb.yaml
Normal file
29
custom_deployments/with_eupf/nr-gnb.yaml
Normal file
@@ -0,0 +1,29 @@
|
||||
version: '3'
|
||||
services:
|
||||
nr_gnb:
|
||||
image: docker_ueransim
|
||||
container_name: nr_gnb
|
||||
stdin_open: true
|
||||
tty: true
|
||||
volumes:
|
||||
- ../../ueransim:/mnt/ueransim
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
env_file:
|
||||
- .custom_env
|
||||
environment:
|
||||
- COMPONENT_NAME=ueransim-gnb-1
|
||||
expose:
|
||||
- "38412/sctp"
|
||||
- "2152/udp"
|
||||
- "4997/udp"
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
privileged: true
|
||||
networks:
|
||||
default:
|
||||
ipv4_address: ${NR_GNB_IP}
|
||||
networks:
|
||||
default:
|
||||
external:
|
||||
name: docker_open5gs_default
|
||||
27
custom_deployments/with_eupf/nr-ue.yaml
Normal file
27
custom_deployments/with_eupf/nr-ue.yaml
Normal file
@@ -0,0 +1,27 @@
|
||||
version: '3'
|
||||
services:
|
||||
nr_ue:
|
||||
image: docker_ueransim
|
||||
container_name: nr_ue
|
||||
stdin_open: true
|
||||
tty: true
|
||||
volumes:
|
||||
- ../../ueransim:/mnt/ueransim
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
env_file:
|
||||
- .custom_env
|
||||
environment:
|
||||
- COMPONENT_NAME=ueransim-ue-1
|
||||
expose:
|
||||
- "4997/udp"
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
privileged: true
|
||||
networks:
|
||||
default:
|
||||
ipv4_address: ${NR_UE_IP}
|
||||
networks:
|
||||
default:
|
||||
external:
|
||||
name: docker_open5gs_default
|
||||
34
custom_deployments/with_eupf/oaignb.yaml
Normal file
34
custom_deployments/with_eupf/oaignb.yaml
Normal file
@@ -0,0 +1,34 @@
|
||||
version: '3'
|
||||
services:
|
||||
oaignb:
|
||||
build:
|
||||
context: oai
|
||||
dockerfile: gnb_dockerfile
|
||||
image: docker_oai_gnb
|
||||
container_name: oaignb
|
||||
stdin_open: true
|
||||
tty: true
|
||||
privileged: true
|
||||
sysctls:
|
||||
- net.ipv4.ip_forward=1
|
||||
devices:
|
||||
- "/dev/bus"
|
||||
volumes:
|
||||
- /dev/serial:/dev/serial:ro
|
||||
- /dev/bus/usb:/dev/bus/usb:ro
|
||||
- ../../oai:/mnt/oai
|
||||
- ../../log:/openairinterface5g/cmake_targets/log/
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
env_file:
|
||||
- .custom_env
|
||||
expose:
|
||||
- "38412/sctp"
|
||||
- "2152/udp"
|
||||
networks:
|
||||
default:
|
||||
ipv4_address: ${OAI_ENB_IP}
|
||||
networks:
|
||||
default:
|
||||
external:
|
||||
name: docker_open5gs_default
|
||||
30
custom_deployments/with_eupf/srsgnb.yaml
Normal file
30
custom_deployments/with_eupf/srsgnb.yaml
Normal file
@@ -0,0 +1,30 @@
|
||||
version: '3'
|
||||
services:
|
||||
srsgnb:
|
||||
image: docker_srsran
|
||||
container_name: srsgnb
|
||||
stdin_open: true
|
||||
tty: true
|
||||
privileged: true
|
||||
devices:
|
||||
- "/dev/bus"
|
||||
volumes:
|
||||
- /dev/serial:/dev/serial:ro
|
||||
- /dev/bus/usb:/dev/bus/usb:ro
|
||||
- ../../srsran:/mnt/srsran
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
env_file:
|
||||
- .custom_env
|
||||
environment:
|
||||
- COMPONENT_NAME=gnb
|
||||
expose:
|
||||
- "38412/sctp"
|
||||
- "2152/udp"
|
||||
networks:
|
||||
default:
|
||||
ipv4_address: ${SRS_GNB_IP}
|
||||
networks:
|
||||
default:
|
||||
external:
|
||||
name: docker_open5gs_default
|
||||
28
custom_deployments/with_eupf/srsgnb_zmq.yaml
Normal file
28
custom_deployments/with_eupf/srsgnb_zmq.yaml
Normal file
@@ -0,0 +1,28 @@
|
||||
version: '3'
|
||||
services:
|
||||
srsgnb_zmq:
|
||||
image: docker_srsran
|
||||
container_name: srsgnb_zmq
|
||||
stdin_open: true
|
||||
tty: true
|
||||
privileged: true
|
||||
volumes:
|
||||
- ../../srsran:/mnt/srsran
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
env_file:
|
||||
- .custom_env
|
||||
environment:
|
||||
- COMPONENT_NAME=gnb_zmq
|
||||
expose:
|
||||
- "38412/sctp"
|
||||
- "2152/udp"
|
||||
- "2000/tcp"
|
||||
- "2001/tcp"
|
||||
networks:
|
||||
default:
|
||||
ipv4_address: ${SRS_GNB_IP}
|
||||
networks:
|
||||
default:
|
||||
external:
|
||||
name: docker_open5gs_default
|
||||
28
custom_deployments/with_eupf/srsue_5g_zmq.yaml
Normal file
28
custom_deployments/with_eupf/srsue_5g_zmq.yaml
Normal file
@@ -0,0 +1,28 @@
|
||||
version: '3'
|
||||
services:
|
||||
srsue_5g_zmq:
|
||||
image: docker_srslte
|
||||
container_name: srsue_5g_zmq
|
||||
stdin_open: true
|
||||
tty: true
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
privileged: true
|
||||
volumes:
|
||||
- ../../srslte:/mnt/srslte
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
env_file:
|
||||
- .custom_env
|
||||
environment:
|
||||
- COMPONENT_NAME=ue_5g_zmq
|
||||
expose:
|
||||
- "2000/tcp"
|
||||
- "2001/tcp"
|
||||
networks:
|
||||
default:
|
||||
ipv4_address: ${SRS_UE_IP}
|
||||
networks:
|
||||
default:
|
||||
external:
|
||||
name: docker_open5gs_default
|
||||
Reference in New Issue
Block a user