Web-based display tool for owntracks
Go to file
2021-05-24 16:02:31 +02:00
cmd/ot-browser Add Docker build 2021-05-24 16:02:31 +02:00
www First prototype 2021-05-24 15:51:04 +02: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