-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.ue2.yaml
More file actions
84 lines (73 loc) · 1.56 KB
/
docker-compose.ue2.yaml
File metadata and controls
84 lines (73 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
version: '3.8'
x-container-defaults: &container_defaults
restart: unless-stopped
networks:
- open5gs-main
x-ue-env: &ue_env
MCC: 999
MNC: 70
KEY: 465B5CE8B199B49FAA5F0A2EE238A6BC
OP: E8ED289DEBA952E4283B54E88E6183CA
OP_TYPE: OPC
APN: internet
SST: 1
SD: "0x222222"
IPERF_HOST: 10.128.0.14
IPERF_TIME: 30
x-ue-service: &ue_service
image: docker.io/openverso/ueransim:3.2.6
<<: *container_defaults
cap_add:
- NET_ADMIN
devices:
- /dev/net/tun:/dev/net/tun
command: "ue -n 1"
volumes:
- .deploy/docker/iperf-test.sh:/opt/iperf-test.sh
- ${DOCKER_SHARED_DIR}/iperf:/opt/iperf/results
services:
ue2-03:
<<: *ue_service
environment:
<<: *ue_env
MSISDN: "0000000003"
GNB_HOSTNAME: open5gs-gnb-1
IPERF_PORT: 5201
ue2-04:
<<: *ue_service
environment:
<<: *ue_env
MSISDN: "0000000004"
GNB_HOSTNAME: open5gs-gnb-2
IPERF_PORT: 5202
ue2-05:
<<: *ue_service
environment:
<<: *ue_env
MSISDN: "0000000005"
GNB_HOSTNAME: open5gs-gnb-3
IPERF_PORT: 5203
ue2-06:
<<: *ue_service
environment:
<<: *ue_env
MSISDN: "0000000006"
GNB_HOSTNAME: open5gs-gnb-4
IPERF_PORT: 5204
ue2-07:
<<: *ue_service
environment:
<<: *ue_env
MSISDN: "0000000007"
GNB_HOSTNAME: open5gs-gnb-5
IPERF_PORT: 5205
ue2-08:
<<: *ue_service
environment:
<<: *ue_env
MSISDN: "0000000008"
GNB_HOSTNAME: open5gs-gnb-6
IPERF_PORT: 5206
networks:
open5gs-main:
external: true