mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
30 lines
576 B
YAML
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
|