-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yaml
228 lines (216 loc) · 4.57 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
version: '3.8'
services:
free5gc-upf:
container_name: upf
build:
context: ./nf_upf
args:
DEBUG_TOOLS: "false"
command: bash -c "./router.sh && ./free5gc-upfd -f ../config/upfcfg.yaml"
volumes:
- "./config/upfcfg.yaml:/free5gc/config/upfcfg.yaml"
- "./config/router.sh:/free5gc/free5gc-upfd/router.sh"
cap_add:
- NET_ADMIN
networks:
default:
aliases:
- upf.free5gc.org
db:
container_name: mongodb
image: mongo
command: mongod --port 27017
expose:
- "27017"
volumes:
- dbdata:/data/db
networks:
default:
aliases:
- db
free5gc-nrf:
container_name: nrf
build:
context: ./nf_nrf
args:
DEBUG_TOOLS: "false"
command: ./nrf -nrfcfg ../config/nrfcfg.yaml
expose:
- "8000"
volumes:
- ./config/nrfcfg.yaml:/free5gc/config/nrfcfg.yaml
environment:
DB_URI: mongodb://db/free5gc
GIN_MODE: release
networks:
default:
aliases:
- nrf.free5gc.org
depends_on:
- db
free5gc-amf:
container_name: amf
build:
context: ./nf_amf
args:
DEBUG_TOOLS: "false"
command: ./amf -amfcfg ../config/amfcfg.yaml
expose:
- "8000"
volumes:
- ./config/amfcfg.yaml:/free5gc/config/amfcfg.yaml
environment:
GIN_MODE: release
networks:
default:
aliases:
- amf.free5gc.org
depends_on:
- free5gc-nrf
- free5gc-ausf
free5gc-ausf:
container_name: ausf
build:
context: ./nf_ausf
args:
DEBUG_TOOLS: "false"
command: ./ausf -ausfcfg ../config/ausfcfg.yaml
expose:
- "8000"
volumes:
- ./config/ausfcfg.yaml:/free5gc/config/ausfcfg.yaml
environment:
GIN_MODE: release
networks:
default:
aliases:
- ausf.free5gc.org
depends_on:
- free5gc-nrf
free5gc-nssf:
container_name: nssf
build:
context: ./nf_nssf
args:
DEBUG_TOOLS: "false"
command: ./nssf -nssfcfg ../config/nssfcfg.yaml
expose:
- "8000"
volumes:
- ./config/nssfcfg.yaml:/free5gc/config/nssfcfg.yaml
environment:
GIN_MODE: release
networks:
default:
aliases:
- nssf.free5gc.org
depends_on:
- free5gc-nrf
free5gc-pcf:
container_name: pcf
build:
context: ./nf_pcf
args:
DEBUG_TOOLS: "false"
command: ./pcf -pcfcfg ../config/pcfcfg.yaml
expose:
- "8000"
volumes:
- ./config/pcfcfg.yaml:/free5gc/config/pcfcfg.yaml
environment:
GIN_MODE: release
networks:
default:
aliases:
- pcf.free5gc.org
depends_on:
- free5gc-nrf
free5gc-smf:
container_name: smf
build:
context: ./nf_smf
args:
DEBUG_TOOLS: "false"
command: ./smf -smfcfg ../config/smfcfg.yaml
expose:
- "8000"
volumes:
- ./config/smfcfg.yaml:/free5gc/config/smfcfg.yaml
- ./config/uerouting.yaml:/free5gc/config/uerouting.yaml
environment:
GIN_MODE: release
networks:
default:
aliases:
- smf.free5gc.org
depends_on:
- free5gc-nrf
- free5gc-upf
free5gc-udm:
container_name: udm
build:
context: ./nf_udm
args:
DEBUG_TOOLS: "false"
command: ./udm -udmcfg ../config/udmcfg.yaml
expose:
- "8000"
volumes:
- ./config/udmcfg.yaml:/free5gc/config/udmcfg.yaml
environment:
GIN_MODE: release
networks:
default:
aliases:
- udm.free5gc.org
depends_on:
- db
- free5gc-nrf
free5gc-udr:
container_name: udr
build:
context: ./nf_udr
args:
DEBUG_TOOLS: "false"
command: ./udr -udrcfg ../config/udrcfg.yaml
expose:
- "8000"
volumes:
- ./config/udrcfg.yaml:/free5gc/config/udrcfg.yaml
environment:
DB_URI: mongodb://db/free5gc
GIN_MODE: release
networks:
default:
aliases:
- udr.free5gc.org
depends_on:
- db
- free5gc-nrf
free5gc-webui:
container_name: webui
build:
context: ./webui
args:
DEBUG_TOOLS: "false"
command: ./webui
volumes:
- ./config/webuicfg.yaml:/free5gc/config/webuicfg.yaml
environment:
- GIN_MODE=release
networks:
default:
aliases:
- webui
ports:
- "5000:5000"
depends_on:
- db
networks:
default:
ipam:
driver: default
config:
- subnet: 10.100.200.0/24
volumes:
dbdata: