Add custom Dockerfile with working FTS versions

This commit is contained in:
dev
2026-05-03 14:39:29 +02:00
parent 166e3d96a3
commit 03df0d9136
3 changed files with 60 additions and 1 deletions
Executable
+13
View File
@@ -0,0 +1,13 @@
#!/bin/bash
# Start FTS services
cd /home/fts
# Start the API service
python3 -m FreeTAKServer.controllers.services.FTS &
# Start the UI
cd /home/fts/FreeTAKServer-UI
python3 run.py &
wait