-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsrs_eNB_UE_zmq.yaml
53 lines (52 loc) · 1.07 KB
/
srs_eNB_UE_zmq.yaml
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
version: '3'
services:
srsenb_zmq:
profiles: ["enb","ran"]
image: docker_srslte
container_name: srsenb_zmq
stdin_open: true
tty: true
privileged: true
volumes:
- ./srslte:/mnt/srslte
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
env_file:
- .env_epc
environment:
- COMPONENT_NAME=enb_zmq
expose:
- "36412/sctp"
- "2152/udp"
- "2000/tcp"
- "2001/tcp"
networks:
rannw:
ipv4_address: ${SRS_ENB_IP}
srsue_zmq:
profiles: ["ue","ran"]
image: docker_srslte
container_name: srsue_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:
- .env_epc
environment:
- COMPONENT_NAME=ue_zmq
expose:
- "2000/tcp"
- "2001/tcp"
networks:
rannw:
ipv4_address: ${SRS_UE_IP}
networks:
rannw:
name: docker_epc_epcnw
external: true