2020-09-16 13:01:06 +02:00
|
|
|
version: "3.8"
|
2019-10-02 02:12:13 +02:00
|
|
|
|
|
|
|
services:
|
|
|
|
|
|
|
|
recorder:
|
2023-12-14 15:13:43 +02:00
|
|
|
image: owntracks/recorder
|
2019-10-02 02:12:13 +02:00
|
|
|
ports:
|
|
|
|
- "8083:8083"
|
|
|
|
volumes:
|
2023-12-14 15:13:43 +02:00
|
|
|
- ./data:/store
|
2019-10-02 02:12:13 +02:00
|
|
|
environment:
|
2020-09-16 13:01:06 +02:00
|
|
|
- OTR_HOST=mqtt.eclipse.org
|
|
|
|
- OTR_PORT=8883
|
2019-10-02 02:12:13 +02:00
|
|
|
- OTR_USER=username
|
|
|
|
- OTR_PASS=password
|
|
|
|
- OTR_TOPICS=owntracks/#
|
2020-09-16 13:01:06 +02:00
|
|
|
- OTR_CAPATH=/etc/ssl/certs/
|
2019-10-02 02:12:13 +02:00
|
|
|
# OTR_OPTIONS=--debug
|
|
|
|
restart: unless-stopped
|
|
|
|
|
|
|
|
frontend:
|
|
|
|
image: owntracks/frontend
|
|
|
|
ports:
|
2022-06-30 08:31:10 +02:00
|
|
|
- "8080:80"
|
2019-10-02 02:12:13 +02:00
|
|
|
environment:
|
2020-09-16 13:01:06 +02:00
|
|
|
- LISTEN_PORT=80
|
2019-10-02 02:12:13 +02:00
|
|
|
- SERVER_HOST=recorder
|
|
|
|
- SERVER_PORT=8083
|
|
|
|
restart: unless-stopped
|