Initial commit from Martins Github

This commit is contained in:
Jake Kasper
2026-04-23 13:50:31 -05:00
parent 488a0d01ef
commit 3228db3097
30 changed files with 4377 additions and 1 deletions

19
build-ueransim.sh Normal file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
# Run this once on the host to build the UERANSIM Docker image (~5-10 minutes).
# Usage: bash /opt/p5g-marvis/build-ueransim.sh
set -e
echo "Building UERANSIM Docker image (this takes ~5-10 minutes)..."
docker build \
-t ueransim \
-f /opt/p5g-marvis/Dockerfile.ueransim \
/opt/p5g-marvis
echo ""
echo "Done! UERANSIM image built successfully."
echo ""
echo "Next step: edit credentials in /opt/p5g-marvis/config/ueransim.env"
echo " UE_KEY=<your 32-hex-char key>"
echo " UE_OP=<your 32-hex-char OPC>"
echo ""
echo "Then use the 'Perform Emulated Data Session' tile in P5G Marvis Minis."