1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/owntracks/ot-recorder/arm/docker-compose.yml

29 lines
605 B
YAML
Raw Normal View History

2019-10-15 01:23:44 +00:00
version: "3.7"
services:
recorder:
image: easypi/ot-recorder-arm
ports:
- "8083:8083"
volumes:
- ./data:/var/spool/owntracks/recorder/store
environment:
- OTR_HOST=iot.eclipse.org
- OTR_PORT=8883
- OTR_USER=username
- OTR_PASS=password
- OTR_TOPICS=owntracks/#
# OTR_CAFILE=/etc/ssl/certs/DST_Root_CA_X3.pem
# OTR_OPTIONS=--debug
restart: unless-stopped
frontend:
image: easypi/ot-frontend-arm
ports:
- 8080:80
environment:
- SERVER_HOST=recorder
- SERVER_PORT=8083
restart: unless-stopped