fix(nfs): config.yaml to json

This commit is contained in:
2026-03-29 14:14:05 +02:00
parent 62ffa10761
commit ec36305a38
5 changed files with 35 additions and 17 deletions

34
nfs/config.json Normal file
View File

@@ -0,0 +1,34 @@
{
"name": "NFS Server",
"version": "1.0.1",
"slug": "nfs_server",
"description": "Expose Home Assistant media folder via NFS.",
"arch": [
"amd64",
"aarch64",
"armv7"
],
"startup": "services",
"boot": "auto",
"init": false,
"host_network": true,
"privileged": [
"SYS_ADMIN"
],
"apparmor": false,
"kernel_modules": true,
"map": [
"media:rw"
],
"options": {
"allowed_network": "192.168.1.0/24"
},
"schema": {
"allowed_network": "str"
},
"build_from": {
"amd64": "alpine:3.19",
"aarch64": "alpine:3.19",
"armv7": "alpine:3.19"
}
}