-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yaml
76 lines (70 loc) · 1.58 KB
/
docker-compose.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
version: '3'
services:
db:
image: emoro/dbaas:latest
networks:
ric:
ipv4_address: 10.0.2.12
container_name: db
e2rtmansim:
image: emoro/e2rtmansim:latest
networks:
ric:
ipv4_address: 10.0.2.15
container_name: e2rtmansim
e2mgr:
image: emoro/e2mgr:latest
networks:
ric:
ipv4_address: 10.0.2.11
environment:
- RIC_ID=7b0000-000000/18
- DBAAS_PORT_6379_TCP_ADDR=10.0.2.12
- DBAAS_PORT_6379_TCP_PORT=6379
- DBAAS_SERVICE_HOST=10.0.2.12
- DBAAS_SERCE_PORT=6379
volumes:
- ./ric_routes.txt:/opt/E2Manager/router.txt:ro
container_name: e2mgr
e2term:
image: emoro/e2term:latest
networks:
ric:
ipv4_address: 10.0.2.10
depends_on:
- e2mgr
environment:
- local-ip=10.0.2.10
- trace=start
- external-fqdn=e2t.com
- POD_NAME=E2TERM_POD
- sctp-port=36422
volumes:
- ./e2term_config.conf:/opt/e2/config/config.conf:ro
- ./ric_routes.txt:/opt/e2/dockerRouter.txt:ro
container_name: e2term
xapp:
image: emoro/xapp:latest
networks:
ric:
ipv4_address: 10.0.2.24
environment:
- DBAAS_SERVICE_HOST=10.0.2.12
- DBAAS_SERVICE_PORT=6379
volumes:
- ./xapp_routes.txt:/python_xapp/routes.txt:ro
container_name: xapp
gnb:
image: emoro/gnb_emu:latest
networks:
ric:
ipv4_address: 10.0.2.40
container_name: gnb
networks:
ric:
name: ric
driver: bridge
ipam:
driver: default
config:
- subnet: 10.0.2.0/24