This is a docker implementation of the FreeTAK Server.
# pull the docker images
$ docker pull wonderbitcom/freetakserver:latest
# run the container
# ! NOTE change <your_ip> with your correct ip
$ docker run --rm -p 5000:5000 -p 8080:8080 -p 8087:8087 -p 8089:8089 -p 8443:8443 -p 19023:19023 -e FTS_SERVER_IP="<your_ip>" --name fts -d wonderbitcom/freetakserver
# start the admin interface
$ docker exec -ti fts bash -c "python3 /usr/local/lib/python3.8/dist-packages/FreeTAKServer-UI/run.py"
# CTRL+C to stop the interface
# if you want to use the CLI
$ docker exec -ti fts bash -c "python3 -m FreeTAKServer.views.CLI"
# CTRL+C to stop the CLI
# to stop the container
$ docker stop fts
To see it work open your browser at http://<your_ip>:5000. Default username is admin, password is password.
Content type
Image
Digest
Size
180.7 MB
Last updated
over 5 years ago
docker pull wonderbitcom/freetakserver