code for mounting

This commit is contained in:
Alexandre
2020-11-29 18:11:13 +01:00
committed by GitHub
parent 9accc0de31
commit e0898c6374

View File

@@ -1,7 +1,7 @@
{ {
"name": "emby", "name": "emby_nas",
"version": "0.7.1", "version": "1.0",
"slug": "emby", "slug": "emby_nas",
"legacy": false, "legacy": false,
"maintenance": { "maintenance": {
"github_release": "https://github.com/linuxserver/docker-emby", "github_release": "https://github.com/linuxserver/docker-emby",
@@ -29,14 +29,24 @@
], ],
"webui": "http://[HOST]:[PORT:8096]", "webui": "http://[HOST]:[PORT:8096]",
"boot": "auto", "boot": "auto",
"privileged": ["SYS_ADMIN", "DAC_READ_SEARCH"],
"full_access": true,
"options": { "options": {
"PUID": 1001, "PUID": 1001,
"PGID": 1001 "PGID": 1001,
"local_hdd": "<Local>",
"networkdisks": ["<//SERVER/SHARE>"],
"cifsusername": "<username>",
"cifspassword": "<password>"
}, },
"schema": { "schema": {
"PUID": "int", "PUID": "int",
"PGID": "int", "PGID": "int",
"TZ": "str?" "TZ": "str?",
"local_hdd": "str",
"networkdisks": ["str"],
"cifsusername": "str",
"cifspassword": "str"
} }
} }