1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-30 18:51:24 +00:00
dockerfiles/owntracks/ot-recorder/docker-compose.yml
2023-12-14 21:13:43 +08:00

30 lines
576 B
YAML

version: "3.8"
services:
recorder:
image: owntracks/recorder
ports:
- "8083:8083"
volumes:
- ./data:/store
environment:
- OTR_HOST=mqtt.eclipse.org
- OTR_PORT=8883
- OTR_USER=username
- OTR_PASS=password
- OTR_TOPICS=owntracks/#
- OTR_CAPATH=/etc/ssl/certs/
# OTR_OPTIONS=--debug
restart: unless-stopped
frontend:
image: owntracks/frontend
ports:
- "8080:80"
environment:
- LISTEN_PORT=80
- SERVER_HOST=recorder
- SERVER_PORT=8083
restart: unless-stopped