Files
hassio-addons-avm/chrony/config.json
2021-06-29 12:37:08 +03:00

45 lines
942 B
JSON

{
"name": "chrony",
"version": "2.2.0",
"slug": "chrony",
"description": "A local NTP (Network Time Protocol) server for cameras etc.",
"url": "https://github.com/hassio-addons/addon-chrony",
"startup": "system",
"arch": [
"aarch64",
"amd64",
"armhf",
"armv7",
"i386"
],
"hassio_api": true,
"init": false,
"privileged": [
"SYS_TIME"
],
"ports": {
"123/udp": 123
},
"ports_description": {
"123/udp": "NTP; Network Time Protocol"
},
"options": {
"set_system_clock": true,
"mode": "pool",
"ntp_pool": "pool.ntp.org",
"ntp_server": [
"54.39.13.155",
"briareus.schulte.org"
]
},
"schema": {
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
"set_system_clock": "bool",
"ntp_pool": "str?",
"ntp_server": [
"str?"
],
"mode": "list(pool|server)"
},
"image": "ghcr.io/hassio-addons/chrony/{arch}"
}