1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-12 11:14:57 +02:00
dockerfiles/owntracks/ot-recorder/docker-compose.yml

31 lines
625 B
YAML
Raw Normal View History

2020-09-16 13:01:06 +02:00
version: "3.8"
2019-10-02 02:12:13 +02:00
services:
recorder:
image: vimagick/ot-recorder
ports:
- "8083:8083"
2021-10-28 12:31:36 +02:00
- "8085:8085"
2019-10-02 02:12:13 +02:00
volumes:
- ./data:/var/spool/owntracks/recorder/store
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:
- 8080:80
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