mirror of
https://github.com/owntracks/recorder.git
synced 2026-05-07 02:46:36 +00:00
11 lines
329 B
Bash
Executable File
11 lines
329 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cthostname="owntracks.example.org"
|
|
|
|
docker run -v /tmp/o2:/owntracks -p 11883:1883 -p 18883:8883 -p 8083:8083 \
|
|
--hostname "${cthostname}" \
|
|
-e MQTTHOSTNAME="${cthostname}" \
|
|
-e IPLIST="192.168.1.1 127.0.0.83 192.168.1.82" \
|
|
-e HOSTLIST="foo.example.com bar.org.example.com ${cthostname}" \
|
|
owntracks/backend:v01
|