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

feat: upgrade to version 3.4.1 #104

Merged
merged 3 commits into from
Mar 28, 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
1 change: 1 addition & 0 deletions docker-compose-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ services:
- "5000:5000"
depends_on:
- db
- free5gc-nrf

ueransim:
container_name: ueransim
Expand Down
25 changes: 13 additions & 12 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3.8'
services:
free5gc-upf:
container_name: upf
image: free5gc/upf:v3.3.0
image: free5gc/upf:v3.4.1
command: bash -c "./upf-iptables.sh && ./upf -c ./config/upfcfg.yaml"
volumes:
- ./config/upfcfg.yaml:/free5gc/config/upfcfg.yaml
Expand All @@ -30,7 +30,7 @@ services:

free5gc-nrf:
container_name: nrf
image: free5gc/nrf:v3.3.0
image: free5gc/nrf:v3.4.1
command: ./nrf -c ./config/nrfcfg.yaml
expose:
- "8000"
Expand All @@ -48,7 +48,7 @@ services:

free5gc-amf:
container_name: amf
image: free5gc/amf:v3.3.0
image: free5gc/amf:v3.4.1
command: ./amf -c ./config/amfcfg.yaml
expose:
- "8000"
Expand All @@ -65,7 +65,7 @@ services:

free5gc-ausf:
container_name: ausf
image: free5gc/ausf:v3.3.0
image: free5gc/ausf:v3.4.1
command: ./ausf -c ./config/ausfcfg.yaml
expose:
- "8000"
Expand All @@ -82,7 +82,7 @@ services:

free5gc-nssf:
container_name: nssf
image: free5gc/nssf:v3.3.0
image: free5gc/nssf:v3.4.1
command: ./nssf -c ./config/nssfcfg.yaml
expose:
- "8000"
Expand All @@ -99,7 +99,7 @@ services:

free5gc-pcf:
container_name: pcf
image: free5gc/pcf:v3.3.0
image: free5gc/pcf:v3.4.1
command: ./pcf -c ./config/pcfcfg.yaml
expose:
- "8000"
Expand All @@ -116,7 +116,7 @@ services:

free5gc-smf:
container_name: smf
image: free5gc/smf:v3.3.0
image: free5gc/smf:v3.4.1
command: ./smf -c ./config/smfcfg.yaml -u ./config/uerouting.yaml
expose:
- "8000"
Expand All @@ -135,7 +135,7 @@ services:

free5gc-udm:
container_name: udm
image: free5gc/udm:v3.3.0
image: free5gc/udm:v3.4.1
command: ./udm -c ./config/udmcfg.yaml
expose:
- "8000"
Expand All @@ -153,7 +153,7 @@ services:

free5gc-udr:
container_name: udr
image: free5gc/udr:v3.3.0
image: free5gc/udr:v3.4.1
command: ./udr -c ./config/udrcfg.yaml
expose:
- "8000"
Expand All @@ -172,7 +172,7 @@ services:

free5gc-chf:
container_name: chf
image: free5gc/chf@sha256:8b29aeab340b41e67b566765980d86b291593a26d6d21a38903c8f4d7e1e9677
image: free5gc/chf:v3.4.1
command: ./chf -c ./config/chfcfg.yaml
expose:
- "8000"
Expand All @@ -192,7 +192,7 @@ services:

free5gc-n3iwf:
container_name: n3iwf
image: free5gc/n3iwf:v3.3.0
image: free5gc/n3iwf:v3.4.1
command: sh -c "./n3iwf-ipsec.sh && ./n3iwf -c ./config/n3iwfcfg.yaml"
volumes:
- ./config/n3iwfcfg.yaml:/free5gc/config/n3iwfcfg.yaml
Expand All @@ -213,7 +213,7 @@ services:

free5gc-webui:
container_name: webui
image: free5gc/webui:v3.3.0
image: free5gc/webui:v3.4.1
command: ./webui -c ./config/webuicfg.yaml
expose:
- "2122"
Expand All @@ -232,6 +232,7 @@ services:
- "2121:2121"
depends_on:
- db
- free5gc-nrf

ueransim:
container_name: ueransim
Expand Down