Web-based display tool for owntracks
Go to file
Felix Niederwanger ee2720539d
Improve popupdescription of devices
The Popup window of locations now shows the last update, speed and
accuracy.
2022-01-05 16:27:15 +01:00
cmd/ot-browser Improve popupdescription of devices 2022-01-05 16:27:15 +01:00
www Improve popupdescription of devices 2022-01-05 16:27:15 +01:00
.gitignore First prototype 2021-05-24 15:51:04 +02:00
Dockerfile Add Docker build 2021-05-24 16:02:31 +02:00
go.mod First prototype 2021-05-24 15:51:04 +02:00
go.sum First prototype 2021-05-24 15:51:04 +02:00
Makefile First prototype 2021-05-24 15:51:04 +02:00
ot-browser.ini.example First prototype 2021-05-24 15:51:04 +02:00
README.md Add Docker build 2021-05-24 16:02:31 +02:00

ot-browser

Web-based browsing tool for owntracks

Quick start guide

Build the container

make container

Create configuration directory and file

mkdir ot-browser
cp ot-browser.ini.example ot-browser/ot-browser.ini

Edit ot-browser/ot-browser.ini to your needs

vim ot-browser/ot-browser.ini

Create docker container

docker create --name ot-browser -v $PWD/conf:/conf -p 8090:8090/tcp feldspaten.org/ot-browser
# Limit memory
docker update -m 32M --memory-swap 64M ot-browser
docker start ot-browser