add JSON.lua

addresses https://github.com/owntracks/recorder/issues/340
This commit is contained in:
Jan-Piet Mens
2020-04-02 08:05:12 +02:00
parent c33c771b05
commit a8a62c2bff
4 changed files with 1059 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
- UPD: add JSON.lua into /config (https://github.com/owntracks/recorder/issues/340)
- UPD: Remove healthcheck feature (systemd log spam). (#35)
- UPD: run ot-recorder as non-privileged user (#33)
- FIX: comment out CAPATH in recorder.conf (#339)

View File

@@ -40,6 +40,7 @@ RUN apk add --no-cache \
VOLUME ["/store", "/config"]
COPY recorder.conf /config/recorder.conf
COPY JSON.lua /config/JSON.lua
# If you absolutely need health-checking, enable the option below. Keep in
# mind that until https://github.com/systemd/systemd/issues/6432 is resolved,

1053
JSON.lua Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -204,3 +204,6 @@ See [here](https://hub.docker.com/_/eclipse-mosquitto) for info on the eclipse-m
- Maybe put the most common Mosquitto options in the section which uses an MQTT broker in the docker-compose file
- Possibly add support for Let's Encrypt
## Credits
- [JSON.lua](http://regex.info/blog/lua/json), by Jeffrey Friedl. [LICENSE](https://creativecommons.org/licenses/by/3.0/)