Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open5gs update #224

Merged
merged 3 commits into from
Jan 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/open5gs-and-ueransim/gnb1.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
version: '3'
services:
gnb1:
image: openverso/ueransim:3.2.2
image: openverso/ueransim:3.2.6
container_name: gnb1
command:
- gnb
environment:
AMF_HOSTNAME: amf
GNB_HOSTNAME: gnb1
TAC: '1'
MCC: '999'
MNC: '70'
SST: '1'
SD: '0xffffff'
ues1:
image: openverso/ueransim:3.2.2
image: openverso/ueransim:3.2.6
command: ['ue','-n','3']
cap_add:
- all
Expand Down
5 changes: 3 additions & 2 deletions docs/open5gs-and-ueransim/gnb2.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
version: '3'
services:
gnb2:
image: openverso/ueransim:3.2.2
image: openverso/ueransim:3.2.6
container_name: gnb2
command:
- gnb
environment:
AMF_HOSTNAME: amf
GNB_HOSTNAME: gnb2
TAC: '1'
MCC: '999'
MNC: '70'
SST: '1'
SD: '0xffffff'

ues2:
image: openverso/ueransim:3.2.2
image: openverso/ueransim:3.2.6
command: ['ue','-n','3']
cap_add:
- all
Expand Down
109 changes: 55 additions & 54 deletions docs/open5gs-and-ueransim/ngc.yaml
Original file line number Diff line number Diff line change
@@ -1,95 +1,96 @@
version: '3'
services:

services:
mongo:
image: mongo
environment:
MONGO_INITDB_DATABASE: open5gs

amf:
image: openverso/open5gs:2.6.4
command:
- open5gs-amfd
restart : on-failure
image: openverso/open5gs:2.7.0
command:
- open5gs-amfd
restart: on-failure

ausf:
image: openverso/open5gs:2.6.4
command:
- open5gs-ausfd
restart : on-failure
image: openverso/open5gs:2.7.0
command:
- open5gs-ausfd
restart: on-failure

bsf:
image: openverso/open5gs:2.6.4
command: open5gs-bsfd
restart : on-failure

image: openverso/open5gs:2.7.0
command:
- open5gs-bsfd
restart: on-failure

nrf:
image: openverso/open5gs:2.6.4
image: openverso/open5gs:2.7.0
command: open5gs-nrfd
restart : on-failure
restart: on-failure

nssf:
image: openverso/open5gs:2.6.4
command: open5gs-nssfd
restart : on-failure

image: openverso/open5gs:2.7.0
command: open5gs-nssfd
restart: on-failure


pcf:
image: openverso/open5gs:2.6.4
command:
- open5gs-pcfd
environment:
DB_URI: mongodb://mongo/open5gs
restart : on-failure

pcrf:
image: openverso/open5gs:2.6.4
command: ["open5gs-pcrfd"]
image: openverso/open5gs:2.7.0
command:
- open5gs-pcfd
environment:
DB_URI: mongodb://mongo/open5gs
restart: on-failure

scp:
image: openverso/open5gs:2.6.4
image: openverso/open5gs:2.7.0
command: open5gs-scpd
environment:
DB_URI: mongodb://mongo/open5gs
restart: on-failure
restart: on-failure

smf:
image: openverso/open5gs:2.6.4
image: openverso/open5gs:2.7.0
restart: on-failure
command: open5gs-smfd
restart : on-failure


udm:
image: openverso/open5gs:2.6.4
image: openverso/open5gs:2.7.0
restart: on-failure
command:
- open5gs-udmd
command:
- open5gs-udmd

udr:
image: openverso/open5gs:2.6.4
image: openverso/open5gs:2.7.0
restart: on-failure
environment:
DB_URI: mongodb://mongo/open5gs
command:
- open5gs-udrd
command:
- open5gs-udrd

upf:
image: openverso/open5gs:2.6.4
image: openverso/open5gs:2.7.0
command:
- open5gs-upfd
- open5gs-upfd
cap_add:
- all
- all
privileged: true
restart: on-failure
# environment:
# ENABLE_NAT: "false"
ports:
- 2152:2152
- 2152:2152

webui:
image: openverso/open5gs-webui:2.6.4
image: openverso/open5gs-webui:2.7.0
restart: on-failure
environment:
DB_URI: mongodb://mongo/open5gs
NODE_ENV: development
NODE_ENV: dev
ports:
- 3000:3000
- 9999:9999

# portainer:
# image: portainer/portainer-ce
# ports:
Expand Down
Loading
Loading