Skip to content

Commit

Permalink
s
Browse files Browse the repository at this point in the history
  • Loading branch information
rfs85 authored Mar 28, 2024
1 parent 0e24ed1 commit 31afd8a
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 0 deletions.
2 changes: 2 additions & 0 deletions 4G-LAB/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
MONGO_IP=""
WEBUI_IP=""
39 changes: 39 additions & 0 deletions 4G-LAB/4g-volte.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
version: '3'
services:
mongo:
image: mongo:6.0
container_name: mongo
command: --bind_ip 0.0.0.0
env_file:
- .env
volumes:
- mongodbdata:/data/db
- mongodbdata:/data/configdb
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
expose:
- "27017/udp"
- "27017/tcp"
networks:
default:
ipv4_address: ${MONGO_IP}
webui:
image: rfs85dev/rfs5g-free5gc:latest
container_name: webui
depends_on:
- mongo
env_file:
- .env
environment:
- COMPONENT_NAME=webui
volumes:
- ./webui:/mnt/webui
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
expose:
- "3000/tcp"
ports:
- "3000:3000/tcp"
networks:
default:
ipv4_address: ${WEBUI_IP}
3 changes: 3 additions & 0 deletions 5G-SA/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# 5G SA


0 comments on commit 31afd8a

Please sign in to comment.