20 lines
320 B
Bash
Executable File
20 lines
320 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Run local setup scripts
|
|
./iptun.sh
|
|
./srsran_performance.sh
|
|
|
|
# Start core container
|
|
docker start core
|
|
|
|
# Run commands inside core container
|
|
docker exec -d core bash -c "
|
|
cd /etc/open5gs && \
|
|
systemctl start mongod && \
|
|
./go.sh
|
|
"
|
|
|
|
echo "Starting gnb directly on host..."
|
|
gnb -c gnbx.yaml
|