generated from oci/template
All checks were successful
Build Docker Image on Commit / build-and-publish (push) Successful in 16m30s
14 lines
289 B
Bash
Executable file
14 lines
289 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
# Source the virtual environment
|
|
source ${FTS_VENV}/bin/activate
|
|
|
|
# Change to the configuration directory
|
|
cd /opt/FreeTAKHub-Installation/${CFG_RPATH}
|
|
|
|
# Start FreeTAKServer
|
|
echo "Starting FreeTAKServer..."
|
|
python3 -m FreeTAKServer.controllers.services.FTS
|
|
|
|
deactivate
|