app_versions.json 133 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175
  1. {
  2. "1.0.56": {
  3. "healthy": true,
  4. "supported": true,
  5. "healthy_error": null,
  6. "location": "/__w/apps/apps/trains/test/nextcloud/1.0.56",
  7. "last_update": "2025-09-05 14:25:56",
  8. "required_features": [],
  9. "human_version": "31.0.8-fpm-954edb5c_1.0.56",
  10. "version": "1.0.56",
  11. "app_metadata": {
  12. "app_version": "31.0.8-fpm-954edb5c",
  13. "capabilities": [],
  14. "categories": [
  15. "productivity"
  16. ],
  17. "date_added": "2024-08-07",
  18. "description": "A file sharing server that puts the control and security of your own data back into your hands.",
  19. "home": "https://nextcloud.com/",
  20. "host_mounts": [],
  21. "icon": "https://media.sys.truenas.net/apps/nextcloud/icons/icon.svg",
  22. "keywords": [
  23. "nextcloud",
  24. "storage",
  25. "sync",
  26. "http",
  27. "web",
  28. "php"
  29. ],
  30. "lib_version": "2.1.49",
  31. "lib_version_hash": "e71e6b0122c9446fa5ea6fb07e7eb01b11fb42d549a19845426bbd7e21a42634",
  32. "maintainers": [
  33. {
  34. "email": "dev@ixsystems.com",
  35. "name": "truenas",
  36. "url": "https://www.truenas.com/"
  37. }
  38. ],
  39. "name": "nextcloud",
  40. "run_as_context": [
  41. {
  42. "description": "Nextcloud runs as any non-root user.",
  43. "gid": 568,
  44. "group_name": "nextcloud",
  45. "uid": 568,
  46. "user_name": "nextcloud"
  47. },
  48. {
  49. "description": "Nextcloud Cron runs as any non-root user.",
  50. "gid": 568,
  51. "group_name": "nextcloud",
  52. "uid": 568,
  53. "user_name": "nextcloud"
  54. },
  55. {
  56. "description": "Nextcloud Notify Push runs as any non-root user.",
  57. "gid": 568,
  58. "group_name": "nextcloud",
  59. "uid": 568,
  60. "user_name": "nextcloud"
  61. },
  62. {
  63. "description": "Postgres runs as non-root user.",
  64. "gid": 999,
  65. "group_name": "postgres",
  66. "uid": 999,
  67. "user_name": "postgres"
  68. },
  69. {
  70. "description": "Redis runs as any non-root user.",
  71. "gid": 568,
  72. "group_name": "redis",
  73. "uid": 568,
  74. "user_name": "redis"
  75. },
  76. {
  77. "description": "Nginx runs as any non-root user.",
  78. "gid": 568,
  79. "group_name": "nginx",
  80. "uid": 568,
  81. "user_name": "nginx"
  82. },
  83. {
  84. "description": "Imaginary runs as any non-root user.",
  85. "gid": 568,
  86. "group_name": "imaginary",
  87. "uid": 568,
  88. "user_name": "imaginary"
  89. }
  90. ],
  91. "screenshots": [
  92. "https://media.sys.truenas.net/apps/nextcloud/screenshots/screenshot1.png",
  93. "https://media.sys.truenas.net/apps/nextcloud/screenshots/screenshot2.png",
  94. "https://media.sys.truenas.net/apps/nextcloud/screenshots/screenshot3.png"
  95. ],
  96. "sources": [
  97. "https://github.com/nextcloud/docker",
  98. "https://github.com/truenas/containers/tree/master/apps/nextcloud-fpm",
  99. "https://hub.docker.com/r/ixsystems/nextcloud-fpm",
  100. "https://github.com/truenas/containers/tree/master/apps/nextcloud-notify-push",
  101. "https://hub.docker.com/r/ixsystems/nextcloud-notify-push"
  102. ],
  103. "title": "Nextcloud",
  104. "train": "test",
  105. "version": "1.0.56"
  106. },
  107. "schema": {
  108. "groups": [
  109. {
  110. "name": "Nextcloud Configuration",
  111. "description": "Configure Nextcloud"
  112. },
  113. {
  114. "name": "User and Group Configuration",
  115. "description": "Configure User and Group for Nextcloud"
  116. },
  117. {
  118. "name": "Network Configuration",
  119. "description": "Configure Network for Nextcloud"
  120. },
  121. {
  122. "name": "Storage Configuration",
  123. "description": "Configure Storage for Nextcloud"
  124. },
  125. {
  126. "name": "Labels Configuration",
  127. "description": "Configure Labels for Nextcloud"
  128. },
  129. {
  130. "name": "Resources Configuration",
  131. "description": "Configure Resources for Nextcloud"
  132. }
  133. ],
  134. "questions": [
  135. {
  136. "variable": "TZ",
  137. "group": "Nextcloud Configuration",
  138. "label": "Timezone",
  139. "schema": {
  140. "type": "string",
  141. "default": "Etc/UTC",
  142. "required": true,
  143. "$ref": [
  144. "definitions/timezone"
  145. ]
  146. }
  147. },
  148. {
  149. "variable": "nextcloud",
  150. "label": "",
  151. "group": "Nextcloud Configuration",
  152. "schema": {
  153. "type": "dict",
  154. "attrs": [
  155. {
  156. "variable": "postgres_image_selector",
  157. "label": "Postgres Image (CAUTION)",
  158. "description": "If you are changing this after the postgres directory has been initialized,</br>\nSTOP! and make sure you have a backup of your data.</br>\nChanging this will trigger an one way database upgrade.</br>\nYou can only select newer versions of postgres.</br>\nSelecting an older version will refuse to start.</br>\nIf something goes wrong, you will have to restore from backup.\n",
  159. "schema": {
  160. "type": "string",
  161. "default": "postgres_17_image",
  162. "required": true,
  163. "enum": [
  164. {
  165. "value": "postgres_17_image",
  166. "description": "Postgres 17"
  167. }
  168. ]
  169. }
  170. },
  171. {
  172. "variable": "admin_user",
  173. "label": "Admin User",
  174. "description": "The admin user for Nextcloud.",
  175. "schema": {
  176. "type": "string",
  177. "default": "",
  178. "required": true
  179. }
  180. },
  181. {
  182. "variable": "admin_password",
  183. "label": "Admin Password",
  184. "description": "The admin password for Nextcloud.",
  185. "schema": {
  186. "type": "string",
  187. "default": "",
  188. "required": true,
  189. "private": true
  190. }
  191. },
  192. {
  193. "variable": "redis_password",
  194. "label": "Redis Password",
  195. "description": "The password for Redis.",
  196. "schema": {
  197. "type": "string",
  198. "default": "",
  199. "required": true,
  200. "private": true
  201. }
  202. },
  203. {
  204. "variable": "db_password",
  205. "label": "Database Password",
  206. "description": "The password for the database.",
  207. "schema": {
  208. "type": "string",
  209. "default": "",
  210. "required": true,
  211. "private": true
  212. }
  213. },
  214. {
  215. "variable": "build",
  216. "label": "Build",
  217. "description": "Build-time configuration for Nextcloud.",
  218. "schema": {
  219. "type": "dict",
  220. "attrs": [
  221. {
  222. "variable": "tesseract_languages",
  223. "label": "Tesseract Language Codes",
  224. "description": "The tesseract languages to install for OCRmypdf.</br>\nSee a list of language codes here https://tesseract-ocr.github.io/tessdoc/Data-Files-in-different-versions.html.</br>\nTyping a wrong language code will block the container from starting.\n",
  225. "schema": {
  226. "type": "list",
  227. "default": [],
  228. "items": [
  229. {
  230. "variable": "language",
  231. "label": "Language",
  232. "schema": {
  233. "type": "string",
  234. "min_length": 3,
  235. "max_length": 7,
  236. "required": true
  237. }
  238. }
  239. ]
  240. }
  241. }
  242. ]
  243. }
  244. },
  245. {
  246. "variable": "performance",
  247. "label": "Performance",
  248. "description": "Performance settings for Nextcloud.\n",
  249. "schema": {
  250. "type": "dict",
  251. "attrs": [
  252. {
  253. "variable": "run_optimize",
  254. "label": "Run Optimize",
  255. "description": "Runs some optimizations for Nextcloud.</br>\nSee https://github.com/truenas/containers/blob/master/apps/nextcloud-fpm/configure-scripts/occ-optimize.sh\n",
  256. "schema": {
  257. "type": "boolean",
  258. "default": true
  259. }
  260. },
  261. {
  262. "variable": "max_chunksize_mb",
  263. "label": "Max Chunksize (MB)",
  264. "description": "The maximum chunk size to use for chunked uploads.",
  265. "schema": {
  266. "type": "int",
  267. "default": 10,
  268. "min": 1,
  269. "max": 1024,
  270. "required": true
  271. }
  272. },
  273. {
  274. "variable": "php_upload_limit_gb",
  275. "label": "PHP Upload Limit (GB)",
  276. "description": "The maximum size of an uploaded file.",
  277. "schema": {
  278. "type": "int",
  279. "default": 3,
  280. "min": 1,
  281. "required": true
  282. }
  283. },
  284. {
  285. "variable": "php_memory_limit_mb",
  286. "label": "PHP Memory Limit (MB)",
  287. "description": "The maximum amount of memory a script may consume.",
  288. "schema": {
  289. "type": "int",
  290. "default": 512,
  291. "min": 128,
  292. "max": 4096,
  293. "required": true
  294. }
  295. }
  296. ]
  297. }
  298. },
  299. {
  300. "variable": "general",
  301. "label": "General",
  302. "description": "General settings for Nextcloud.",
  303. "schema": {
  304. "type": "dict",
  305. "attrs": [
  306. {
  307. "variable": "maintenance_window_start",
  308. "label": "Maintenance Window Start",
  309. "description": "The start of the maintenance window.</br>\nSee https://docs.nextcloud.com/server/28/admin_manual/configuration_server/background_jobs_configuration.html#maintenance-window-start\n",
  310. "schema": {
  311. "type": "int",
  312. "default": 100,
  313. "min": 0,
  314. "max": 100,
  315. "required": true
  316. }
  317. },
  318. {
  319. "variable": "default_phone_region",
  320. "label": "Default Phone Region",
  321. "description": "The default phone region.",
  322. "schema": {
  323. "type": "string",
  324. "default": "US",
  325. "min_length": 2,
  326. "max_length": 2,
  327. "required": true
  328. }
  329. }
  330. ]
  331. }
  332. },
  333. {
  334. "variable": "previews",
  335. "label": "Previews",
  336. "description": "Previews settings for Nextcloud.",
  337. "schema": {
  338. "type": "dict",
  339. "attrs": [
  340. {
  341. "variable": "enabled",
  342. "label": "Enabled",
  343. "description": "Enable previews.",
  344. "schema": {
  345. "type": "boolean",
  346. "default": true
  347. }
  348. },
  349. {
  350. "variable": "imaginary",
  351. "label": "Imaginary",
  352. "description": "Enable Imaginary.</br>\nEnabling or Disabling this will trigger actions on each startup to ensure\nthe configuration is either present or absent.</br>\nActions like, update configuration, add/remove nextcloud app.\n",
  353. "schema": {
  354. "type": "dict",
  355. "show_if": [
  356. [
  357. "enabled",
  358. "=",
  359. true
  360. ]
  361. ],
  362. "attrs": [
  363. {
  364. "variable": "enabled",
  365. "label": "Enabled",
  366. "description": "Enable Imaginary.",
  367. "schema": {
  368. "type": "boolean",
  369. "default": true
  370. }
  371. }
  372. ]
  373. }
  374. },
  375. {
  376. "variable": "max_x",
  377. "label": "Max X",
  378. "description": "The maximum width of the preview.",
  379. "schema": {
  380. "type": "int",
  381. "default": 2048,
  382. "required": true
  383. }
  384. },
  385. {
  386. "variable": "max_y",
  387. "label": "Max Y",
  388. "description": "The maximum height of the preview.",
  389. "schema": {
  390. "type": "int",
  391. "default": 2048,
  392. "required": true
  393. }
  394. },
  395. {
  396. "variable": "max_memory_mb",
  397. "label": "Max Memory (MB)",
  398. "description": "The maximum memory to use for the preview.",
  399. "schema": {
  400. "type": "int",
  401. "default": 1024,
  402. "required": true
  403. }
  404. },
  405. {
  406. "variable": "max_filesize_image_mb",
  407. "label": "Max Filesize Image (MB)",
  408. "description": "The maximum size of an image to use for the preview.",
  409. "schema": {
  410. "type": "int",
  411. "default": 50,
  412. "required": true
  413. }
  414. },
  415. {
  416. "variable": "jpeg_quality",
  417. "label": "JPEG Quality",
  418. "description": "The JPEG quality to use for the preview.",
  419. "schema": {
  420. "type": "int",
  421. "default": 60,
  422. "min": 1,
  423. "max": 100,
  424. "required": true
  425. }
  426. },
  427. {
  428. "variable": "square_sizes",
  429. "label": "Square Sizes",
  430. "description": "The square sizes to use for the preview.",
  431. "schema": {
  432. "type": "list",
  433. "default": [
  434. 32,
  435. 256
  436. ],
  437. "items": [
  438. {
  439. "variable": "size",
  440. "label": "Size",
  441. "schema": {
  442. "type": "int",
  443. "min": 1,
  444. "max": 1024,
  445. "required": true
  446. }
  447. }
  448. ]
  449. }
  450. },
  451. {
  452. "variable": "width_sizes",
  453. "label": "Width Sizes",
  454. "description": "The width sizes to use for the preview.",
  455. "schema": {
  456. "type": "list",
  457. "default": [
  458. 256,
  459. 384
  460. ],
  461. "items": [
  462. {
  463. "variable": "size",
  464. "label": "Size",
  465. "schema": {
  466. "type": "int",
  467. "min": 1,
  468. "max": 1024,
  469. "required": true
  470. }
  471. }
  472. ]
  473. }
  474. },
  475. {
  476. "variable": "height_sizes",
  477. "label": "Height Sizes",
  478. "description": "The height sizes to use for the preview.",
  479. "schema": {
  480. "type": "list",
  481. "default": [
  482. 256
  483. ],
  484. "items": [
  485. {
  486. "variable": "size",
  487. "label": "Size",
  488. "schema": {
  489. "type": "int",
  490. "min": 1,
  491. "max": 1024,
  492. "required": true
  493. }
  494. }
  495. ]
  496. }
  497. },
  498. {
  499. "variable": "providers",
  500. "label": "Providers",
  501. "description": "The providers to use for the preview.</br>\n",
  502. "schema": {
  503. "type": "list",
  504. "default": [
  505. "BMP",
  506. "GIF",
  507. "JPEG",
  508. "Krita",
  509. "MarkDown",
  510. "MP3",
  511. "OpenDocument",
  512. "PNG",
  513. "TXT",
  514. "XBitmap"
  515. ],
  516. "items": [
  517. {
  518. "variable": "provider",
  519. "label": "Provider",
  520. "schema": {
  521. "type": "string",
  522. "required": true,
  523. "enum": [
  524. {
  525. "value": "BMP",
  526. "description": "BMP"
  527. },
  528. {
  529. "value": "GIF",
  530. "description": "GIF"
  531. },
  532. {
  533. "value": "JPEG",
  534. "description": "JPEG"
  535. },
  536. {
  537. "value": "Krita",
  538. "description": "Krita"
  539. },
  540. {
  541. "value": "MarkDown",
  542. "description": "MarkDown"
  543. },
  544. {
  545. "value": "MP3",
  546. "description": "MP3"
  547. },
  548. {
  549. "value": "OpenDocument",
  550. "description": "OpenDocument"
  551. },
  552. {
  553. "value": "PNG",
  554. "description": "PNG"
  555. },
  556. {
  557. "value": "TXT",
  558. "description": "TXT"
  559. },
  560. {
  561. "value": "XBitmap",
  562. "description": "XBitmap"
  563. },
  564. {
  565. "value": "Font",
  566. "description": "Font"
  567. },
  568. {
  569. "value": "HEIC",
  570. "description": "HEIC"
  571. },
  572. {
  573. "value": "Illustrator",
  574. "description": "Illustrator"
  575. },
  576. {
  577. "value": "Movie",
  578. "description": "Movie"
  579. },
  580. {
  581. "value": "MSOffice2003",
  582. "description": "MSOffice2003"
  583. },
  584. {
  585. "value": "MSOffice2007",
  586. "description": "MSOffice2007"
  587. },
  588. {
  589. "value": "MSOfficeDoc",
  590. "description": "MSOfficeDoc"
  591. },
  592. {
  593. "value": "PDF",
  594. "description": "PDF"
  595. },
  596. {
  597. "value": "Photoshop",
  598. "description": "Photoshop"
  599. },
  600. {
  601. "value": "Postscript",
  602. "description": "Postscript"
  603. },
  604. {
  605. "value": "StarOffice",
  606. "description": "StarOffice"
  607. },
  608. {
  609. "value": "SVG",
  610. "description": "SVG"
  611. },
  612. {
  613. "value": "TIFF",
  614. "description": "TIFF"
  615. },
  616. {
  617. "value": "EMF",
  618. "description": "EMF"
  619. }
  620. ]
  621. }
  622. }
  623. ]
  624. }
  625. }
  626. ]
  627. }
  628. },
  629. {
  630. "variable": "expirations",
  631. "label": "Expirations",
  632. "description": "Expirations settings for Nextcloud.",
  633. "schema": {
  634. "type": "dict",
  635. "attrs": [
  636. {
  637. "variable": "activity_expire_days",
  638. "label": "Activity Expire Days",
  639. "description": "The number of days to keep activity logs.",
  640. "schema": {
  641. "type": "int",
  642. "default": 365,
  643. "min": 1,
  644. "required": true
  645. }
  646. },
  647. {
  648. "variable": "trash_retention",
  649. "label": "Trash Retention",
  650. "description": "See https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/trashbin_configuration.html#deleted-items-trash-bin\n",
  651. "schema": {
  652. "type": "string",
  653. "default": "auto",
  654. "required": true
  655. }
  656. },
  657. {
  658. "variable": "versions_retention",
  659. "label": "Versions Retention",
  660. "description": "See https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/file_versioning.html\n",
  661. "schema": {
  662. "type": "string",
  663. "default": "auto",
  664. "required": true
  665. }
  666. }
  667. ]
  668. }
  669. },
  670. {
  671. "variable": "cron",
  672. "label": "Cron",
  673. "description": "Cron settings for Nextcloud.",
  674. "schema": {
  675. "type": "dict",
  676. "attrs": [
  677. {
  678. "variable": "tasks",
  679. "label": "Tasks",
  680. "description": "Only add here additional (custom) cron tasks.</br>\nThe Nextcloud's default cron task is already scheduled.</br>\n",
  681. "schema": {
  682. "type": "list",
  683. "default": [],
  684. "items": [
  685. {
  686. "variable": "task",
  687. "label": "Task",
  688. "schema": {
  689. "type": "dict",
  690. "attrs": [
  691. {
  692. "variable": "schedule",
  693. "label": "Schedule",
  694. "description": "The cron schedule.",
  695. "schema": {
  696. "type": "string",
  697. "default": "*/15 * * * *",
  698. "required": true
  699. }
  700. },
  701. {
  702. "variable": "command",
  703. "label": "Command",
  704. "description": "The command to run.",
  705. "schema": {
  706. "type": "string",
  707. "required": true,
  708. "private": true
  709. }
  710. }
  711. ]
  712. }
  713. }
  714. ]
  715. }
  716. }
  717. ]
  718. }
  719. },
  720. {
  721. "variable": "notify_push",
  722. "label": "Notify Push",
  723. "description": "Notify Push settings for Nextcloud.</br>\nEnabling or Disabling this will trigger actions on each startup to ensure\nthe configuration is either present or absent.</br>\nActions like, update configuration, add/remove nextcloud app.\n",
  724. "schema": {
  725. "type": "dict",
  726. "attrs": [
  727. {
  728. "variable": "enabled",
  729. "label": "Enabled",
  730. "description": "Enable Notify Push container",
  731. "schema": {
  732. "type": "boolean",
  733. "default": true
  734. }
  735. }
  736. ]
  737. }
  738. },
  739. {
  740. "variable": "collabora",
  741. "label": "Collabora",
  742. "description": "Collabora settings for Nextcloud.</br>\nEnabling or Disabling this will trigger actions on each startup to ensure\nthe configuration is either present or absent.</br>\nActions like, update configuration, add/remove nextcloud app.\n",
  743. "schema": {
  744. "type": "dict",
  745. "attrs": [
  746. {
  747. "variable": "enabled",
  748. "label": "Enabled",
  749. "description": "Enable Collabora",
  750. "schema": {
  751. "type": "boolean",
  752. "default": false
  753. }
  754. },
  755. {
  756. "variable": "url",
  757. "label": "URL",
  758. "description": "The URL to use for Collabora.</br>\nhttps://collabora.example.com\n",
  759. "schema": {
  760. "type": "string",
  761. "show_if": [
  762. [
  763. "enabled",
  764. "=",
  765. true
  766. ]
  767. ],
  768. "required": true
  769. }
  770. },
  771. {
  772. "variable": "internal_url",
  773. "label": "Internal URL",
  774. "description": "The internal URL to use for Collabora.</br>\nThis URL needs to be accessible from the Nextcloud container.</br>\nBut not required to be accessible from the outside (ie clients).</br>\n",
  775. "schema": {
  776. "type": "string",
  777. "show_if": [
  778. [
  779. "enabled",
  780. "=",
  781. true
  782. ]
  783. ],
  784. "default": "http://host.docker.internal:9980",
  785. "required": true
  786. }
  787. },
  788. {
  789. "variable": "allowlist",
  790. "label": "Allowlist",
  791. "description": "The allowlist to use for Collabora.</br>\nExample: 0.0.0.0/0\n",
  792. "schema": {
  793. "type": "list",
  794. "show_if": [
  795. [
  796. "enabled",
  797. "=",
  798. true
  799. ]
  800. ],
  801. "default": [
  802. "0.0.0.0/0"
  803. ],
  804. "items": [
  805. {
  806. "variable": "allow",
  807. "label": "Allow",
  808. "schema": {
  809. "type": "string",
  810. "required": true
  811. }
  812. }
  813. ]
  814. }
  815. }
  816. ]
  817. }
  818. },
  819. {
  820. "variable": "onlyoffice",
  821. "label": "Onlyoffice",
  822. "description": "Onlyoffice settings for Nextcloud.</br>\nEnabling or Disabling this will trigger actions on each startup to ensure\nthe configuration is either present or absent.</br>\nActions like, update configuration, add/remove nextcloud app.\n",
  823. "schema": {
  824. "type": "dict",
  825. "attrs": [
  826. {
  827. "variable": "enabled",
  828. "label": "Enabled",
  829. "description": "Enable Onlyoffice",
  830. "schema": {
  831. "type": "boolean",
  832. "default": false
  833. }
  834. },
  835. {
  836. "variable": "url",
  837. "label": "URL",
  838. "description": "The URL to use for Onlyoffice.</br>\nhttps://onlyoffice.example.com\n",
  839. "schema": {
  840. "type": "string",
  841. "show_if": [
  842. [
  843. "enabled",
  844. "=",
  845. true
  846. ]
  847. ],
  848. "required": true
  849. }
  850. },
  851. {
  852. "variable": "jwt_secret",
  853. "label": "JWT Secret",
  854. "description": "The JWT secret to use for Onlyoffice.</br>\nExample: random_string_of_characters\n",
  855. "schema": {
  856. "type": "string",
  857. "show_if": [
  858. [
  859. "enabled",
  860. "=",
  861. true
  862. ]
  863. ],
  864. "required": true
  865. }
  866. },
  867. {
  868. "variable": "jwt_header",
  869. "label": "JWT Header",
  870. "description": "The JWT header to use for Onlyoffice.</br>\nExample: Authorization\n",
  871. "schema": {
  872. "type": "string",
  873. "show_if": [
  874. [
  875. "enabled",
  876. "=",
  877. true
  878. ]
  879. ],
  880. "default": "Authorization",
  881. "required": true
  882. }
  883. }
  884. ]
  885. }
  886. },
  887. {
  888. "variable": "clamav",
  889. "label": "Clamav",
  890. "description": "Clamav settings for Nextcloud.",
  891. "schema": {
  892. "type": "dict",
  893. "attrs": [
  894. {
  895. "variable": "enabled",
  896. "label": "Enabled",
  897. "description": "Enable Clamav",
  898. "schema": {
  899. "type": "boolean",
  900. "default": false
  901. }
  902. },
  903. {
  904. "variable": "host",
  905. "label": "Host",
  906. "description": "The host to use for Clamav.</br>\nDo NOT include the protocol or the port.</br>\nExamples: </br>\n - clamav.example.com\n - 192.168.1.100 (replace ip and port with your own)\n",
  907. "schema": {
  908. "type": "string",
  909. "show_if": [
  910. [
  911. "enabled",
  912. "=",
  913. true
  914. ]
  915. ],
  916. "required": true
  917. }
  918. },
  919. {
  920. "variable": "port",
  921. "label": "Port",
  922. "description": "The port to use for Clamav.</br>\nExample: 3310\n",
  923. "schema": {
  924. "type": "int",
  925. "show_if": [
  926. [
  927. "enabled",
  928. "=",
  929. true
  930. ]
  931. ],
  932. "default": 3310,
  933. "min": 1,
  934. "max": 65535,
  935. "required": true
  936. }
  937. },
  938. {
  939. "variable": "file_max_size",
  940. "label": "File Max Size",
  941. "description": "The maximum size of a file to scan.</br>\nExample: -1 (unlimited)\n",
  942. "schema": {
  943. "type": "int",
  944. "show_if": [
  945. [
  946. "enabled",
  947. "=",
  948. true
  949. ]
  950. ],
  951. "default": -1,
  952. "min": -1,
  953. "required": true
  954. }
  955. },
  956. {
  957. "variable": "infected_action",
  958. "label": "Infected Action",
  959. "description": "The action to take when a file is infected.</br>\nExample: only_log\n",
  960. "schema": {
  961. "type": "string",
  962. "show_if": [
  963. [
  964. "enabled",
  965. "=",
  966. true
  967. ]
  968. ],
  969. "default": "only_log",
  970. "required": true,
  971. "enum": [
  972. {
  973. "value": "only_log",
  974. "description": "Only log"
  975. },
  976. {
  977. "value": "delete",
  978. "description": "Delete"
  979. }
  980. ]
  981. }
  982. }
  983. ]
  984. }
  985. },
  986. {
  987. "variable": "urls",
  988. "label": "URLs",
  989. "description": "URLs settings for Nextcloud.",
  990. "schema": {
  991. "type": "dict",
  992. "attrs": [
  993. {
  994. "variable": "protocol",
  995. "label": "Protocol",
  996. "description": "The protocol you use to access Nextcloud.</br>\nFor example if you use a reverse proxy, you most likely want to use https.</br>\nIf you setup a certificate on the network section, https will be used automatically.\n",
  997. "schema": {
  998. "type": "string",
  999. "default": "http",
  1000. "required": true,
  1001. "enum": [
  1002. {
  1003. "value": "http",
  1004. "description": "HTTP"
  1005. },
  1006. {
  1007. "value": "https",
  1008. "description": "HTTPS"
  1009. }
  1010. ]
  1011. }
  1012. },
  1013. {
  1014. "variable": "host",
  1015. "label": "Host",
  1016. "description": "The host you use to access Nextcloud.</br>\nDo NOT include the protocol or the port.</br>\nExamples:</br>\n- cloud.domain.com</br>\n- 192.168.1.100 (replace ip and port with your own)\n",
  1017. "schema": {
  1018. "type": "string",
  1019. "default": "",
  1020. "required": true
  1021. }
  1022. },
  1023. {
  1024. "variable": "external_port",
  1025. "label": "External Port",
  1026. "description": "The external port you use to access Nextcloud.</br>\nIf you use a reverse proxy, you most likely want to use 443.</br>\nLeave it at `0` if you are not using anything else in-front of Nextcloud.</br>\nExample: 443\n",
  1027. "schema": {
  1028. "type": "int",
  1029. "null": true,
  1030. "min": 1,
  1031. "max": 65535
  1032. }
  1033. },
  1034. {
  1035. "variable": "trusted_domains",
  1036. "label": "Trusted Domains",
  1037. "description": "Additional trusted domains to use for Nextcloud.</br>\nAutomatically added:\n- The `host` you set above\n- Hosts of Collabora and/or Onlyoffice\n",
  1038. "schema": {
  1039. "type": "list",
  1040. "default": [],
  1041. "items": [
  1042. {
  1043. "variable": "domain",
  1044. "label": "Domain",
  1045. "schema": {
  1046. "type": "string",
  1047. "required": true
  1048. }
  1049. }
  1050. ]
  1051. }
  1052. },
  1053. {
  1054. "variable": "trusted_proxies",
  1055. "label": "Trusted Proxies",
  1056. "description": "Trusted proxies to use for Nextcloud.",
  1057. "schema": {
  1058. "type": "list",
  1059. "default": [
  1060. "10.0.0.0/8",
  1061. "172.16.0.0/12",
  1062. "192.168.0.0/16"
  1063. ],
  1064. "items": [
  1065. {
  1066. "variable": "proxy",
  1067. "label": "Proxy",
  1068. "schema": {
  1069. "type": "string",
  1070. "required": true
  1071. }
  1072. }
  1073. ]
  1074. }
  1075. }
  1076. ]
  1077. }
  1078. },
  1079. {
  1080. "variable": "additional_envs",
  1081. "label": "Additional Environment Variables",
  1082. "schema": {
  1083. "type": "list",
  1084. "default": [],
  1085. "items": [
  1086. {
  1087. "variable": "env",
  1088. "label": "Environment Variable",
  1089. "schema": {
  1090. "type": "dict",
  1091. "attrs": [
  1092. {
  1093. "variable": "name",
  1094. "label": "Name",
  1095. "schema": {
  1096. "type": "string",
  1097. "required": true
  1098. }
  1099. },
  1100. {
  1101. "variable": "value",
  1102. "label": "Value",
  1103. "schema": {
  1104. "type": "string"
  1105. }
  1106. }
  1107. ]
  1108. }
  1109. }
  1110. ]
  1111. }
  1112. }
  1113. ]
  1114. }
  1115. },
  1116. {
  1117. "variable": "run_as",
  1118. "label": "",
  1119. "group": "User and Group Configuration",
  1120. "schema": {
  1121. "type": "dict",
  1122. "attrs": [
  1123. {
  1124. "variable": "user",
  1125. "label": "User ID",
  1126. "description": "The user id that Nextcloud files will be owned by.",
  1127. "schema": {
  1128. "type": "int",
  1129. "min": 568,
  1130. "default": 568,
  1131. "required": true
  1132. }
  1133. },
  1134. {
  1135. "variable": "group",
  1136. "label": "Group ID",
  1137. "description": "The group id that Nextcloud files will be owned by.",
  1138. "schema": {
  1139. "type": "int",
  1140. "min": 568,
  1141. "default": 568,
  1142. "required": true
  1143. }
  1144. }
  1145. ]
  1146. }
  1147. },
  1148. {
  1149. "variable": "network",
  1150. "label": "",
  1151. "group": "Network Configuration",
  1152. "schema": {
  1153. "type": "dict",
  1154. "attrs": [
  1155. {
  1156. "variable": "web_port",
  1157. "label": "WebUI Port",
  1158. "schema": {
  1159. "type": "dict",
  1160. "attrs": [
  1161. {
  1162. "variable": "bind_mode",
  1163. "label": "Port Bind Mode",
  1164. "description": "The port bind mode.</br>\n- Publish: The port will be published on the host for external access.</br>\n- Expose: The port will be exposed for inter-container communication.</br>\n- None: The port will not be exposed or published.</br>\nNote: If the Dockerfile defines an EXPOSE directive,\nthe port will still be exposed for inter-container communication regardless of this setting.\n",
  1165. "schema": {
  1166. "type": "string",
  1167. "default": "published",
  1168. "enum": [
  1169. {
  1170. "value": "published",
  1171. "description": "Publish port on the host for external access"
  1172. },
  1173. {
  1174. "value": "exposed",
  1175. "description": "Expose port for inter-container communication"
  1176. },
  1177. {
  1178. "value": "",
  1179. "description": "None"
  1180. }
  1181. ]
  1182. }
  1183. },
  1184. {
  1185. "variable": "port_number",
  1186. "label": "Port Number",
  1187. "schema": {
  1188. "type": "int",
  1189. "default": 30125,
  1190. "min": 1,
  1191. "max": 65535,
  1192. "required": true
  1193. }
  1194. },
  1195. {
  1196. "variable": "host_ips",
  1197. "label": "Host IPs",
  1198. "description": "IPs on the host to bind this port",
  1199. "schema": {
  1200. "type": "list",
  1201. "show_if": [
  1202. [
  1203. "bind_mode",
  1204. "=",
  1205. "published"
  1206. ]
  1207. ],
  1208. "default": [],
  1209. "items": [
  1210. {
  1211. "variable": "host_ip",
  1212. "label": "Host IP",
  1213. "schema": {
  1214. "type": "string",
  1215. "required": true,
  1216. "$ref": [
  1217. "definitions/node_bind_ip"
  1218. ]
  1219. }
  1220. }
  1221. ]
  1222. }
  1223. }
  1224. ]
  1225. }
  1226. },
  1227. {
  1228. "variable": "certificate_id",
  1229. "label": "Certificate ID",
  1230. "description": "The certificate ID to use for Nextcloud.",
  1231. "schema": {
  1232. "type": "int",
  1233. "null": true,
  1234. "$ref": [
  1235. "definitions/certificate"
  1236. ]
  1237. }
  1238. }
  1239. ]
  1240. }
  1241. },
  1242. {
  1243. "variable": "storage",
  1244. "label": "",
  1245. "group": "Storage Configuration",
  1246. "schema": {
  1247. "type": "dict",
  1248. "attrs": [
  1249. {
  1250. "variable": "html",
  1251. "label": "Nextcloud AppData Storage (HTML, Custom Themes, Apps, etc.)",
  1252. "description": "The path to store Nextcloud HTML and AppData.",
  1253. "schema": {
  1254. "type": "dict",
  1255. "attrs": [
  1256. {
  1257. "variable": "type",
  1258. "label": "Type",
  1259. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  1260. "schema": {
  1261. "type": "string",
  1262. "required": true,
  1263. "default": "ix_volume",
  1264. "enum": [
  1265. {
  1266. "value": "host_path",
  1267. "description": "Host Path (Path that already exists on the system)"
  1268. },
  1269. {
  1270. "value": "ix_volume",
  1271. "description": "ixVolume (Dataset created automatically by the system)"
  1272. }
  1273. ]
  1274. }
  1275. },
  1276. {
  1277. "variable": "ix_volume_config",
  1278. "label": "ixVolume Configuration",
  1279. "description": "The configuration for the ixVolume dataset.",
  1280. "schema": {
  1281. "type": "dict",
  1282. "show_if": [
  1283. [
  1284. "type",
  1285. "=",
  1286. "ix_volume"
  1287. ]
  1288. ],
  1289. "$ref": [
  1290. "normalize/ix_volume"
  1291. ],
  1292. "attrs": [
  1293. {
  1294. "variable": "acl_enable",
  1295. "label": "Enable ACL",
  1296. "description": "Enable ACL for the storage.",
  1297. "schema": {
  1298. "type": "boolean",
  1299. "default": false
  1300. }
  1301. },
  1302. {
  1303. "variable": "dataset_name",
  1304. "label": "Dataset Name",
  1305. "description": "The name of the dataset to use for storage.",
  1306. "schema": {
  1307. "type": "string",
  1308. "required": true,
  1309. "hidden": true,
  1310. "default": "html"
  1311. }
  1312. },
  1313. {
  1314. "variable": "acl_entries",
  1315. "label": "ACL Configuration",
  1316. "schema": {
  1317. "type": "dict",
  1318. "show_if": [
  1319. [
  1320. "acl_enable",
  1321. "=",
  1322. true
  1323. ]
  1324. ],
  1325. "attrs": []
  1326. }
  1327. }
  1328. ]
  1329. }
  1330. },
  1331. {
  1332. "variable": "host_path_config",
  1333. "label": "Host Path Configuration",
  1334. "schema": {
  1335. "type": "dict",
  1336. "show_if": [
  1337. [
  1338. "type",
  1339. "=",
  1340. "host_path"
  1341. ]
  1342. ],
  1343. "attrs": [
  1344. {
  1345. "variable": "acl_enable",
  1346. "label": "Enable ACL",
  1347. "description": "Enable ACL for the storage.",
  1348. "schema": {
  1349. "type": "boolean",
  1350. "default": false
  1351. }
  1352. },
  1353. {
  1354. "variable": "acl",
  1355. "label": "ACL Configuration",
  1356. "schema": {
  1357. "type": "dict",
  1358. "show_if": [
  1359. [
  1360. "acl_enable",
  1361. "=",
  1362. true
  1363. ]
  1364. ],
  1365. "attrs": [],
  1366. "$ref": [
  1367. "normalize/acl"
  1368. ]
  1369. }
  1370. },
  1371. {
  1372. "variable": "path",
  1373. "label": "Host Path",
  1374. "description": "The host path to use for storage.",
  1375. "schema": {
  1376. "type": "hostpath",
  1377. "show_if": [
  1378. [
  1379. "acl_enable",
  1380. "=",
  1381. false
  1382. ]
  1383. ],
  1384. "required": true
  1385. }
  1386. }
  1387. ]
  1388. }
  1389. }
  1390. ]
  1391. }
  1392. },
  1393. {
  1394. "variable": "data",
  1395. "label": "Nextcloud User Data Storage",
  1396. "description": "The path to store Nextcloud User Data (Mounted at /nc-data).",
  1397. "schema": {
  1398. "type": "dict",
  1399. "attrs": [
  1400. {
  1401. "variable": "type",
  1402. "label": "Type",
  1403. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  1404. "schema": {
  1405. "type": "string",
  1406. "required": true,
  1407. "default": "ix_volume",
  1408. "enum": [
  1409. {
  1410. "value": "host_path",
  1411. "description": "Host Path (Path that already exists on the system)"
  1412. },
  1413. {
  1414. "value": "ix_volume",
  1415. "description": "ixVolume (Dataset created automatically by the system)"
  1416. }
  1417. ]
  1418. }
  1419. },
  1420. {
  1421. "variable": "ix_volume_config",
  1422. "label": "ixVolume Configuration",
  1423. "description": "The configuration for the ixVolume dataset.",
  1424. "schema": {
  1425. "type": "dict",
  1426. "show_if": [
  1427. [
  1428. "type",
  1429. "=",
  1430. "ix_volume"
  1431. ]
  1432. ],
  1433. "$ref": [
  1434. "normalize/ix_volume"
  1435. ],
  1436. "attrs": [
  1437. {
  1438. "variable": "acl_enable",
  1439. "label": "Enable ACL",
  1440. "description": "Enable ACL for the storage.",
  1441. "schema": {
  1442. "type": "boolean",
  1443. "default": false
  1444. }
  1445. },
  1446. {
  1447. "variable": "dataset_name",
  1448. "label": "Dataset Name",
  1449. "description": "The name of the dataset to use for storage.",
  1450. "schema": {
  1451. "type": "string",
  1452. "required": true,
  1453. "hidden": true,
  1454. "default": "data"
  1455. }
  1456. },
  1457. {
  1458. "variable": "acl_entries",
  1459. "label": "ACL Configuration",
  1460. "schema": {
  1461. "type": "dict",
  1462. "show_if": [
  1463. [
  1464. "acl_enable",
  1465. "=",
  1466. true
  1467. ]
  1468. ],
  1469. "attrs": []
  1470. }
  1471. }
  1472. ]
  1473. }
  1474. },
  1475. {
  1476. "variable": "host_path_config",
  1477. "label": "Host Path Configuration",
  1478. "schema": {
  1479. "type": "dict",
  1480. "show_if": [
  1481. [
  1482. "type",
  1483. "=",
  1484. "host_path"
  1485. ]
  1486. ],
  1487. "attrs": [
  1488. {
  1489. "variable": "acl_enable",
  1490. "label": "Enable ACL",
  1491. "description": "Enable ACL for the storage.",
  1492. "schema": {
  1493. "type": "boolean",
  1494. "default": false
  1495. }
  1496. },
  1497. {
  1498. "variable": "acl",
  1499. "label": "ACL Configuration",
  1500. "schema": {
  1501. "type": "dict",
  1502. "show_if": [
  1503. [
  1504. "acl_enable",
  1505. "=",
  1506. true
  1507. ]
  1508. ],
  1509. "attrs": [],
  1510. "$ref": [
  1511. "normalize/acl"
  1512. ]
  1513. }
  1514. },
  1515. {
  1516. "variable": "path",
  1517. "label": "Host Path",
  1518. "description": "The host path to use for storage.",
  1519. "schema": {
  1520. "type": "hostpath",
  1521. "show_if": [
  1522. [
  1523. "acl_enable",
  1524. "=",
  1525. false
  1526. ]
  1527. ],
  1528. "required": true
  1529. }
  1530. }
  1531. ]
  1532. }
  1533. }
  1534. ]
  1535. }
  1536. },
  1537. {
  1538. "variable": "postgres_data",
  1539. "label": "Nextcloud Postgres Data Storage",
  1540. "description": "The path to store Nextcloud Postgres Data.",
  1541. "schema": {
  1542. "type": "dict",
  1543. "attrs": [
  1544. {
  1545. "variable": "type",
  1546. "label": "Type",
  1547. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.\n",
  1548. "schema": {
  1549. "type": "string",
  1550. "required": true,
  1551. "default": "ix_volume",
  1552. "enum": [
  1553. {
  1554. "value": "host_path",
  1555. "description": "Host Path (Path that already exists on the system)"
  1556. },
  1557. {
  1558. "value": "ix_volume",
  1559. "description": "ixVolume (Dataset created automatically by the system)"
  1560. }
  1561. ]
  1562. }
  1563. },
  1564. {
  1565. "variable": "ix_volume_config",
  1566. "label": "ixVolume Configuration",
  1567. "description": "The configuration for the ixVolume dataset.",
  1568. "schema": {
  1569. "type": "dict",
  1570. "show_if": [
  1571. [
  1572. "type",
  1573. "=",
  1574. "ix_volume"
  1575. ]
  1576. ],
  1577. "$ref": [
  1578. "normalize/ix_volume"
  1579. ],
  1580. "attrs": [
  1581. {
  1582. "variable": "acl_enable",
  1583. "label": "Enable ACL",
  1584. "description": "Enable ACL for the storage.",
  1585. "schema": {
  1586. "type": "boolean",
  1587. "default": false
  1588. }
  1589. },
  1590. {
  1591. "variable": "dataset_name",
  1592. "label": "Dataset Name",
  1593. "description": "The name of the dataset to use for storage.",
  1594. "schema": {
  1595. "type": "string",
  1596. "required": true,
  1597. "hidden": true,
  1598. "default": "postgres_data"
  1599. }
  1600. },
  1601. {
  1602. "variable": "acl_entries",
  1603. "label": "ACL Configuration",
  1604. "schema": {
  1605. "type": "dict",
  1606. "show_if": [
  1607. [
  1608. "acl_enable",
  1609. "=",
  1610. true
  1611. ]
  1612. ],
  1613. "attrs": []
  1614. }
  1615. }
  1616. ]
  1617. }
  1618. },
  1619. {
  1620. "variable": "host_path_config",
  1621. "label": "Host Path Configuration",
  1622. "schema": {
  1623. "type": "dict",
  1624. "show_if": [
  1625. [
  1626. "type",
  1627. "=",
  1628. "host_path"
  1629. ]
  1630. ],
  1631. "attrs": [
  1632. {
  1633. "variable": "acl_enable",
  1634. "label": "Enable ACL",
  1635. "description": "Enable ACL for the storage.",
  1636. "schema": {
  1637. "type": "boolean",
  1638. "default": false
  1639. }
  1640. },
  1641. {
  1642. "variable": "acl",
  1643. "label": "ACL Configuration",
  1644. "schema": {
  1645. "type": "dict",
  1646. "show_if": [
  1647. [
  1648. "acl_enable",
  1649. "=",
  1650. true
  1651. ]
  1652. ],
  1653. "attrs": [],
  1654. "$ref": [
  1655. "normalize/acl"
  1656. ]
  1657. }
  1658. },
  1659. {
  1660. "variable": "path",
  1661. "label": "Host Path",
  1662. "description": "The host path to use for storage.",
  1663. "schema": {
  1664. "type": "hostpath",
  1665. "show_if": [
  1666. [
  1667. "acl_enable",
  1668. "=",
  1669. false
  1670. ]
  1671. ],
  1672. "required": true
  1673. }
  1674. },
  1675. {
  1676. "variable": "auto_permissions",
  1677. "label": "Automatic Permissions",
  1678. "description": "Automatically set permissions for the host path.\nEnabling this, will check the top level directory,</br>\nIf it finds incorrect permissions, it will `chown` the\nhost path to the user and group required for the\npostgres container.\n",
  1679. "schema": {
  1680. "type": "boolean",
  1681. "default": false,
  1682. "show_if": [
  1683. [
  1684. "acl_enable",
  1685. "=",
  1686. false
  1687. ]
  1688. ]
  1689. }
  1690. }
  1691. ]
  1692. }
  1693. }
  1694. ]
  1695. }
  1696. },
  1697. {
  1698. "variable": "additional_storage",
  1699. "label": "Additional Storage",
  1700. "schema": {
  1701. "type": "list",
  1702. "default": [],
  1703. "items": [
  1704. {
  1705. "variable": "storageEntry",
  1706. "label": "Storage Entry",
  1707. "schema": {
  1708. "type": "dict",
  1709. "attrs": [
  1710. {
  1711. "variable": "type",
  1712. "label": "Type",
  1713. "description": "ixVolume: Is dataset created automatically by the system.</br>\nHost Path: Is a path that already exists on the system.</br>\nSMB Share: Is a SMB share that is mounted to as a volume.\n",
  1714. "schema": {
  1715. "type": "string",
  1716. "required": true,
  1717. "default": "ix_volume",
  1718. "enum": [
  1719. {
  1720. "value": "host_path",
  1721. "description": "Host Path (Path that already exists on the system)"
  1722. },
  1723. {
  1724. "value": "ix_volume",
  1725. "description": "ixVolume (Dataset created automatically by the system)"
  1726. },
  1727. {
  1728. "value": "cifs",
  1729. "description": "SMB/CIFS Share (Mounts a volume to a SMB share)"
  1730. }
  1731. ]
  1732. }
  1733. },
  1734. {
  1735. "variable": "read_only",
  1736. "label": "Read Only",
  1737. "description": "Mount the volume as read only.",
  1738. "schema": {
  1739. "type": "boolean",
  1740. "default": false
  1741. }
  1742. },
  1743. {
  1744. "variable": "mount_path",
  1745. "label": "Mount Path",
  1746. "description": "The path inside the container to mount the storage.",
  1747. "schema": {
  1748. "type": "path",
  1749. "required": true
  1750. }
  1751. },
  1752. {
  1753. "variable": "host_path_config",
  1754. "label": "Host Path Configuration",
  1755. "schema": {
  1756. "type": "dict",
  1757. "show_if": [
  1758. [
  1759. "type",
  1760. "=",
  1761. "host_path"
  1762. ]
  1763. ],
  1764. "attrs": [
  1765. {
  1766. "variable": "acl_enable",
  1767. "label": "Enable ACL",
  1768. "description": "Enable ACL for the storage.",
  1769. "schema": {
  1770. "type": "boolean",
  1771. "default": false
  1772. }
  1773. },
  1774. {
  1775. "variable": "acl",
  1776. "label": "ACL Configuration",
  1777. "schema": {
  1778. "type": "dict",
  1779. "show_if": [
  1780. [
  1781. "acl_enable",
  1782. "=",
  1783. true
  1784. ]
  1785. ],
  1786. "attrs": [],
  1787. "$ref": [
  1788. "normalize/acl"
  1789. ]
  1790. }
  1791. },
  1792. {
  1793. "variable": "path",
  1794. "label": "Host Path",
  1795. "description": "The host path to use for storage.",
  1796. "schema": {
  1797. "type": "hostpath",
  1798. "show_if": [
  1799. [
  1800. "acl_enable",
  1801. "=",
  1802. false
  1803. ]
  1804. ],
  1805. "required": true
  1806. }
  1807. }
  1808. ]
  1809. }
  1810. },
  1811. {
  1812. "variable": "ix_volume_config",
  1813. "label": "ixVolume Configuration",
  1814. "description": "The configuration for the ixVolume dataset.",
  1815. "schema": {
  1816. "type": "dict",
  1817. "show_if": [
  1818. [
  1819. "type",
  1820. "=",
  1821. "ix_volume"
  1822. ]
  1823. ],
  1824. "$ref": [
  1825. "normalize/ix_volume"
  1826. ],
  1827. "attrs": [
  1828. {
  1829. "variable": "acl_enable",
  1830. "label": "Enable ACL",
  1831. "description": "Enable ACL for the storage.",
  1832. "schema": {
  1833. "type": "boolean",
  1834. "default": false
  1835. }
  1836. },
  1837. {
  1838. "variable": "dataset_name",
  1839. "label": "Dataset Name",
  1840. "description": "The name of the dataset to use for storage.",
  1841. "schema": {
  1842. "type": "string",
  1843. "required": true,
  1844. "default": "storage_entry"
  1845. }
  1846. },
  1847. {
  1848. "variable": "acl_entries",
  1849. "label": "ACL Configuration",
  1850. "schema": {
  1851. "type": "dict",
  1852. "show_if": [
  1853. [
  1854. "acl_enable",
  1855. "=",
  1856. true
  1857. ]
  1858. ],
  1859. "attrs": [],
  1860. "$ref": [
  1861. "normalize/acl"
  1862. ]
  1863. }
  1864. }
  1865. ]
  1866. }
  1867. },
  1868. {
  1869. "variable": "cifs_config",
  1870. "label": "SMB Configuration",
  1871. "description": "The configuration for the SMB dataset.",
  1872. "schema": {
  1873. "type": "dict",
  1874. "show_if": [
  1875. [
  1876. "type",
  1877. "=",
  1878. "cifs"
  1879. ]
  1880. ],
  1881. "attrs": [
  1882. {
  1883. "variable": "server",
  1884. "label": "Server",
  1885. "description": "The server to mount the SMB share.",
  1886. "schema": {
  1887. "type": "string",
  1888. "required": true
  1889. }
  1890. },
  1891. {
  1892. "variable": "path",
  1893. "label": "Path",
  1894. "description": "The path to mount the SMB share.",
  1895. "schema": {
  1896. "type": "string",
  1897. "required": true
  1898. }
  1899. },
  1900. {
  1901. "variable": "username",
  1902. "label": "Username",
  1903. "description": "The username to use for the SMB share.",
  1904. "schema": {
  1905. "type": "string",
  1906. "required": true
  1907. }
  1908. },
  1909. {
  1910. "variable": "password",
  1911. "label": "Password",
  1912. "description": "The password to use for the SMB share.",
  1913. "schema": {
  1914. "type": "string",
  1915. "required": true,
  1916. "private": true
  1917. }
  1918. },
  1919. {
  1920. "variable": "domain",
  1921. "label": "Domain",
  1922. "description": "The domain to use for the SMB share.",
  1923. "schema": {
  1924. "type": "string"
  1925. }
  1926. }
  1927. ]
  1928. }
  1929. }
  1930. ]
  1931. }
  1932. }
  1933. ]
  1934. }
  1935. }
  1936. ]
  1937. }
  1938. },
  1939. {
  1940. "variable": "labels",
  1941. "label": "",
  1942. "group": "Labels Configuration",
  1943. "schema": {
  1944. "type": "list",
  1945. "default": [],
  1946. "items": [
  1947. {
  1948. "variable": "label",
  1949. "label": "Label",
  1950. "schema": {
  1951. "type": "dict",
  1952. "attrs": [
  1953. {
  1954. "variable": "key",
  1955. "label": "Key",
  1956. "schema": {
  1957. "type": "string",
  1958. "required": true
  1959. }
  1960. },
  1961. {
  1962. "variable": "value",
  1963. "label": "Value",
  1964. "schema": {
  1965. "type": "string",
  1966. "required": true
  1967. }
  1968. },
  1969. {
  1970. "variable": "containers",
  1971. "label": "Containers",
  1972. "description": "Containers where the label should be applied",
  1973. "schema": {
  1974. "type": "list",
  1975. "items": [
  1976. {
  1977. "variable": "container",
  1978. "label": "Container",
  1979. "schema": {
  1980. "type": "string",
  1981. "required": true,
  1982. "enum": [
  1983. {
  1984. "value": "nextcloud",
  1985. "description": "nextcloud"
  1986. },
  1987. {
  1988. "value": "imaginary",
  1989. "description": "imaginary"
  1990. },
  1991. {
  1992. "value": "notify-push",
  1993. "description": "notify-push"
  1994. },
  1995. {
  1996. "value": "cron",
  1997. "description": "cron"
  1998. },
  1999. {
  2000. "value": "nginx",
  2001. "description": "nginx"
  2002. },
  2003. {
  2004. "value": "postgres",
  2005. "description": "postgres"
  2006. },
  2007. {
  2008. "value": "redis",
  2009. "description": "redis"
  2010. }
  2011. ]
  2012. }
  2013. }
  2014. ]
  2015. }
  2016. }
  2017. ]
  2018. }
  2019. }
  2020. ]
  2021. }
  2022. },
  2023. {
  2024. "variable": "resources",
  2025. "label": "",
  2026. "group": "Resources Configuration",
  2027. "schema": {
  2028. "type": "dict",
  2029. "attrs": [
  2030. {
  2031. "variable": "limits",
  2032. "label": "Limits",
  2033. "schema": {
  2034. "type": "dict",
  2035. "attrs": [
  2036. {
  2037. "variable": "cpus",
  2038. "label": "CPUs",
  2039. "description": "CPUs limit for Nextcloud.",
  2040. "schema": {
  2041. "type": "int",
  2042. "default": 2,
  2043. "required": true
  2044. }
  2045. },
  2046. {
  2047. "variable": "memory",
  2048. "label": "Memory (in MB)",
  2049. "description": "Memory limit for Nextcloud.",
  2050. "schema": {
  2051. "type": "int",
  2052. "default": 4096,
  2053. "required": true
  2054. }
  2055. }
  2056. ]
  2057. }
  2058. },
  2059. {
  2060. "variable": "gpus",
  2061. "group": "Resources Configuration",
  2062. "label": "GPU Configuration",
  2063. "schema": {
  2064. "type": "dict",
  2065. "$ref": [
  2066. "definitions/gpu_configuration"
  2067. ],
  2068. "attrs": []
  2069. }
  2070. }
  2071. ]
  2072. }
  2073. }
  2074. ]
  2075. },
  2076. "readme": "<h1>Nextcloud</h1> <p><a href=\"https://nextcloud.com/\">Nextcloud</a> is a file sharing server that puts the control and security of your own data back into your hands.</p>",
  2077. "changelog": null,
  2078. "chart_metadata": {
  2079. "app_version": "31.0.8-fpm-954edb5c",
  2080. "capabilities": [],
  2081. "categories": [
  2082. "productivity"
  2083. ],
  2084. "date_added": "2024-08-07",
  2085. "description": "A file sharing server that puts the control and security of your own data back into your hands.",
  2086. "home": "https://nextcloud.com/",
  2087. "host_mounts": [],
  2088. "icon": "https://media.sys.truenas.net/apps/nextcloud/icons/icon.svg",
  2089. "keywords": [
  2090. "nextcloud",
  2091. "storage",
  2092. "sync",
  2093. "http",
  2094. "web",
  2095. "php"
  2096. ],
  2097. "lib_version": "2.1.49",
  2098. "lib_version_hash": "e71e6b0122c9446fa5ea6fb07e7eb01b11fb42d549a19845426bbd7e21a42634",
  2099. "maintainers": [
  2100. {
  2101. "email": "dev@ixsystems.com",
  2102. "name": "truenas",
  2103. "url": "https://www.truenas.com/"
  2104. }
  2105. ],
  2106. "name": "nextcloud",
  2107. "run_as_context": [
  2108. {
  2109. "description": "Nextcloud runs as any non-root user.",
  2110. "gid": 568,
  2111. "group_name": "nextcloud",
  2112. "uid": 568,
  2113. "user_name": "nextcloud"
  2114. },
  2115. {
  2116. "description": "Nextcloud Cron runs as any non-root user.",
  2117. "gid": 568,
  2118. "group_name": "nextcloud",
  2119. "uid": 568,
  2120. "user_name": "nextcloud"
  2121. },
  2122. {
  2123. "description": "Nextcloud Notify Push runs as any non-root user.",
  2124. "gid": 568,
  2125. "group_name": "nextcloud",
  2126. "uid": 568,
  2127. "user_name": "nextcloud"
  2128. },
  2129. {
  2130. "description": "Postgres runs as non-root user.",
  2131. "gid": 999,
  2132. "group_name": "postgres",
  2133. "uid": 999,
  2134. "user_name": "postgres"
  2135. },
  2136. {
  2137. "description": "Redis runs as any non-root user.",
  2138. "gid": 568,
  2139. "group_name": "redis",
  2140. "uid": 568,
  2141. "user_name": "redis"
  2142. },
  2143. {
  2144. "description": "Nginx runs as any non-root user.",
  2145. "gid": 568,
  2146. "group_name": "nginx",
  2147. "uid": 568,
  2148. "user_name": "nginx"
  2149. },
  2150. {
  2151. "description": "Imaginary runs as any non-root user.",
  2152. "gid": 568,
  2153. "group_name": "imaginary",
  2154. "uid": 568,
  2155. "user_name": "imaginary"
  2156. }
  2157. ],
  2158. "screenshots": [
  2159. "https://media.sys.truenas.net/apps/nextcloud/screenshots/screenshot1.png",
  2160. "https://media.sys.truenas.net/apps/nextcloud/screenshots/screenshot2.png",
  2161. "https://media.sys.truenas.net/apps/nextcloud/screenshots/screenshot3.png"
  2162. ],
  2163. "sources": [
  2164. "https://github.com/nextcloud/docker",
  2165. "https://github.com/truenas/containers/tree/master/apps/nextcloud-fpm",
  2166. "https://hub.docker.com/r/ixsystems/nextcloud-fpm",
  2167. "https://github.com/truenas/containers/tree/master/apps/nextcloud-notify-push",
  2168. "https://hub.docker.com/r/ixsystems/nextcloud-notify-push"
  2169. ],
  2170. "title": "Nextcloud",
  2171. "train": "test",
  2172. "version": "1.0.56"
  2173. }
  2174. }
  2175. }