catalog.json 236 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392
  1. {
  2. "charts": {
  3. "plex": {
  4. "app_readme": "<h1>Plex</h1>\n<p><a href=\"https://plex.tv\">Plex</a> is a media server that allows you to stream your media to any Plex client.</p>",
  5. "categories": [
  6. "media"
  7. ],
  8. "description": "Plex is a media server that allows you to stream your media to any Plex client.",
  9. "healthy": true,
  10. "healthy_error": null,
  11. "home": "https://plex.tv/",
  12. "location": "/__w/charts/charts/charts/plex",
  13. "latest_version": "2.0.4",
  14. "latest_app_version": "1.40.1.8227",
  15. "latest_human_version": "1.40.1.8227_2.0.4",
  16. "last_update": "2024-04-15 09:28:51",
  17. "name": "plex",
  18. "recommended": false,
  19. "title": "Plex",
  20. "maintainers": [
  21. {
  22. "name": "truenas",
  23. "url": "https://www.truenas.com/",
  24. "email": "dev@ixsystems.com"
  25. }
  26. ],
  27. "tags": [
  28. "entertainment",
  29. "movies",
  30. "series",
  31. "tv",
  32. "streaming"
  33. ],
  34. "screenshots": [
  35. "https://media.sys.truenas.net/apps/plex/screenshots/screenshot1.png",
  36. "https://media.sys.truenas.net/apps/plex/screenshots/screenshot2.png"
  37. ],
  38. "sources": [
  39. "https://plex.tv/",
  40. "https://github.com/truenas/charts/tree/master/charts/plex",
  41. "https://hub.docker.com/r/plexinc/pms-docker/"
  42. ],
  43. "icon_url": "https://media.sys.truenas.net/apps/plex/icons/icon.png"
  44. },
  45. "home-assistant": {
  46. "app_readme": "<h1>Home Assistant</h1>\n<p><a href=\"https://www.home-assistant.io/\">Home Assistant</a> is an open source home automation that puts local control and privacy first.</p>",
  47. "categories": [
  48. "productivity"
  49. ],
  50. "description": "Home Assistant is an open source home automation that puts local control and privacy first.",
  51. "healthy": true,
  52. "healthy_error": null,
  53. "home": "https://www.home-assistant.io/",
  54. "location": "/__w/charts/charts/charts/home-assistant",
  55. "latest_version": "2.0.19",
  56. "latest_app_version": "2024.4.3",
  57. "latest_human_version": "2024.4.3_2.0.19",
  58. "last_update": "2024-04-15 09:28:51",
  59. "name": "home-assistant",
  60. "recommended": false,
  61. "title": "Home Assistant",
  62. "maintainers": [
  63. {
  64. "name": "truenas",
  65. "url": "https://www.truenas.com/",
  66. "email": "dev@ixsystems.com"
  67. }
  68. ],
  69. "tags": [
  70. "home-automation",
  71. "assistant"
  72. ],
  73. "screenshots": [
  74. "https://media.sys.truenas.net/apps/home-assistant/screenshots/screenshot1.png"
  75. ],
  76. "sources": [
  77. "https://github.com/home-assistant/home-assistant",
  78. "https://github.com/truenas/charts/tree/master/charts/home-assistant"
  79. ],
  80. "icon_url": "https://media.sys.truenas.net/apps/home-assistant/icons/icon.png"
  81. },
  82. "minio": {
  83. "app_readme": "<h1>MinIO</h1>\n<p><a href=\"https://min.io\">MinIO</a> is a High Performance Object Storage released under Apache License v2.0. It is API compatible with Amazon S3 cloud storage service. Use MinIO to build high performance infrastructure for machine learning, analytics and application data workloads.</p>\n<p><strong>NOTE</strong></p>\n<ul>\n<li>On fresh installation, minIO data directory's ownership will be updated to minio:minio.</li>\n<li>For existing installations that are exhibiting the upgrade to &gt;=1.5.0, the minIO data directory's ownership will be migrated to minio:minio.</li>\n</ul>",
  84. "categories": [
  85. "storage",
  86. "S3"
  87. ],
  88. "description": "High Performance, Kubernetes Native Object Storage",
  89. "healthy": true,
  90. "healthy_error": null,
  91. "home": "https://min.io",
  92. "location": "/__w/charts/charts/charts/minio",
  93. "latest_version": "2.0.4",
  94. "latest_app_version": "2023-03-13",
  95. "latest_human_version": "2023-03-13_2.0.4",
  96. "last_update": "2024-04-15 09:28:51",
  97. "name": "minio",
  98. "recommended": false,
  99. "title": "MinIO",
  100. "maintainers": [
  101. {
  102. "name": "truenas",
  103. "url": "https://www.truenas.com/",
  104. "email": "dev@ixsystems.com"
  105. }
  106. ],
  107. "tags": [],
  108. "screenshots": [
  109. "https://media.sys.truenas.net/apps/minio/screenshots/screenshot1.png",
  110. "https://media.sys.truenas.net/apps/minio/screenshots/screenshot2.png",
  111. "https://media.sys.truenas.net/apps/minio/screenshots/screenshot3.png"
  112. ],
  113. "sources": [
  114. "https://github.com/minio/minio",
  115. "https://github.com/minio/charts"
  116. ],
  117. "icon_url": "https://media.sys.truenas.net/apps/minio/icons/icon.png"
  118. },
  119. "elastic-search": {
  120. "app_readme": "<h1>Elastic Search</h1>\n<p>If you want to apply additional configuration you can by using additional environment variables.</p>\n<p>See the <a href=\"https://www.elastic.co/guide/en/elasticsearch/reference/master/docker.html#docker-configuration-methods\">Elastic Search documentation</a>\nfor more information.</p>",
  121. "categories": [
  122. "monitoring"
  123. ],
  124. "description": "Elasticsearch is the distributed, RESTful search and analytics engine at the heart of the Elastic Stack.",
  125. "healthy": true,
  126. "healthy_error": null,
  127. "home": "https://www.elastic.co",
  128. "location": "/__w/charts/charts/charts/elastic-search",
  129. "latest_version": "1.1.16",
  130. "latest_app_version": "8.13.2",
  131. "latest_human_version": "8.13.2_1.1.16",
  132. "last_update": "2024-04-15 09:28:51",
  133. "name": "elastic-search",
  134. "recommended": false,
  135. "title": "Elastic Search",
  136. "maintainers": [
  137. {
  138. "name": "truenas",
  139. "url": "https://www.truenas.com/",
  140. "email": "dev@ixsystems.com"
  141. }
  142. ],
  143. "tags": [
  144. "elastic",
  145. "search",
  146. "storage"
  147. ],
  148. "screenshots": [],
  149. "sources": [
  150. "https://www.elastic.co/",
  151. "https://github.com/truenas/charts/tree/master/charts/elastic-search",
  152. "https://www.elastic.co/guide/en/elasticsearch/reference/master/docker.html#docker-configuration-methods"
  153. ],
  154. "icon_url": "https://media.sys.truenas.net/apps/elastic-search/icons/icon.svg"
  155. },
  156. "diskoverdata": {
  157. "app_readme": "<h1>Diskover Data</h1>\n<p><a href=\"https://github.com/diskoverdata/diskover-community\">Diskover Data</a> is used to monitor size/volumes of distributed dataset.</p>",
  158. "categories": [
  159. "monitoring"
  160. ],
  161. "description": "Diskover is used to monitor size/volumes of distributed dataset.",
  162. "healthy": true,
  163. "healthy_error": null,
  164. "home": "https://github.com/diskoverdata/diskover-community",
  165. "location": "/__w/charts/charts/charts/diskoverdata",
  166. "latest_version": "2.0.0",
  167. "latest_app_version": "2.0.1",
  168. "latest_human_version": "2.0.1_2.0.0",
  169. "last_update": "2024-04-15 09:28:51",
  170. "name": "diskoverdata",
  171. "recommended": false,
  172. "title": "Diskover Data",
  173. "maintainers": [
  174. {
  175. "name": "truenas",
  176. "url": "https://www.truenas.com/",
  177. "email": "dev@ixsystems.com"
  178. }
  179. ],
  180. "tags": [
  181. "storage",
  182. "discovery"
  183. ],
  184. "screenshots": [
  185. "https://media.sys.truenas.net/apps/diskoverdata/screenshots/screenshot1.png",
  186. "https://media.sys.truenas.net/apps/diskoverdata/screenshots/screenshot2.png",
  187. "https://media.sys.truenas.net/apps/diskoverdata/screenshots/screenshot3.png"
  188. ],
  189. "sources": [
  190. "https://github.com/diskoverdata/diskover-community",
  191. "https://github.com/truenas/charts/tree/master/charts/diskoverdata"
  192. ],
  193. "icon_url": "https://media.sys.truenas.net/apps/diskoverdata/icons/icon.png"
  194. },
  195. "storj": {
  196. "app_readme": "<h1>Storj</h1>\n<p><a href=\"https://www.storj.io/\">Storj</a> - share your extra storage and earn money</p>\n<p>During the first startup a container with root privileges is created.\nAnd it will generate an identity (if it doesn't exist)\nAfter the identity is created, the container will run as a non-root user.</p>",
  197. "categories": [
  198. "storage"
  199. ],
  200. "description": "Share your storage on the internet and earn.",
  201. "healthy": true,
  202. "healthy_error": null,
  203. "home": "https://www.storj.io",
  204. "location": "/__w/charts/charts/charts/storj",
  205. "latest_version": "2.0.1",
  206. "latest_app_version": "v1.68.2",
  207. "latest_human_version": "v1.68.2_2.0.1",
  208. "last_update": "2024-04-15 09:28:51",
  209. "name": "storj",
  210. "recommended": false,
  211. "title": "Storj",
  212. "maintainers": [
  213. {
  214. "name": "truenas",
  215. "url": "https://www.truenas.com/",
  216. "email": "dev@ixsystems.com"
  217. }
  218. ],
  219. "tags": [
  220. "networking",
  221. "financial",
  222. "file-sharing"
  223. ],
  224. "screenshots": [
  225. "https://media.sys.truenas.net/apps/storj/screenshots/screenshot1.jpeg"
  226. ],
  227. "sources": [
  228. "https://www.storj.io",
  229. "https://github.com/truenas/charts/tree/master/charts/storj"
  230. ],
  231. "icon_url": "https://media.sys.truenas.net/apps/storj/icons/icon.svg"
  232. },
  233. "netdata": {
  234. "app_readme": "<h1>Netdata</h1>\n<p><a href=\"https://www.netdata.cloud/\">Netdata</a> is a fast, easy monitoring and troubleshooting system.</p>",
  235. "categories": [
  236. "monitoring"
  237. ],
  238. "description": "Real-time performance monitoring, done right!",
  239. "healthy": true,
  240. "healthy_error": null,
  241. "home": "https://www.netdata.cloud/",
  242. "location": "/__w/charts/charts/charts/netdata",
  243. "latest_version": "2.0.7",
  244. "latest_app_version": "v1.45.3",
  245. "latest_human_version": "v1.45.3_2.0.7",
  246. "last_update": "2024-04-15 09:28:51",
  247. "name": "netdata",
  248. "recommended": false,
  249. "title": "Netdata",
  250. "maintainers": [
  251. {
  252. "name": "truenas",
  253. "url": "https://www.truenas.com/",
  254. "email": "dev@ixsystems.com"
  255. }
  256. ],
  257. "tags": [
  258. "netdata"
  259. ],
  260. "screenshots": [
  261. "https://media.sys.truenas.net/apps/netdata/screenshots/screenshot1.png",
  262. "https://media.sys.truenas.net/apps/netdata/screenshots/screenshot2.png",
  263. "https://media.sys.truenas.net/apps/netdata/screenshots/screenshot3.png"
  264. ],
  265. "sources": [
  266. "https://www.netdata.cloud/",
  267. "https://github.com/netdata/helmchart",
  268. "https://hub.docker.com/r/netdata/netdata",
  269. "https://github.com/netdata/netdata"
  270. ],
  271. "icon_url": "https://media.sys.truenas.net/apps/netdata/icons/icon.png"
  272. },
  273. "nextcloud": {
  274. "app_readme": "<h1>nextcloud</h1>\n<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>",
  275. "categories": [
  276. "productivity"
  277. ],
  278. "description": "A file sharing server that puts the control and security of your own data back into your hands.",
  279. "healthy": true,
  280. "healthy_error": null,
  281. "home": "https://nextcloud.com/",
  282. "location": "/__w/charts/charts/charts/nextcloud",
  283. "latest_version": "1.6.59",
  284. "latest_app_version": "28.0.4",
  285. "latest_human_version": "28.0.4_1.6.59",
  286. "last_update": "2024-04-15 09:28:51",
  287. "name": "nextcloud",
  288. "recommended": false,
  289. "title": "Nextcloud",
  290. "maintainers": [
  291. {
  292. "name": "truenas",
  293. "url": "https://www.truenas.com/",
  294. "email": "dev@ixsystems.com"
  295. }
  296. ],
  297. "tags": [
  298. "nextcloud",
  299. "storage",
  300. "sync"
  301. ],
  302. "screenshots": [
  303. "https://media.sys.truenas.net/apps/nextcloud/screenshots/screenshot1.png",
  304. "https://media.sys.truenas.net/apps/nextcloud/screenshots/screenshot2.png",
  305. "https://media.sys.truenas.net/apps/nextcloud/screenshots/screenshot3.png"
  306. ],
  307. "sources": [
  308. "https://github.com/nextcloud/docker",
  309. "https://github.com/nextcloud/helm",
  310. "https://github.com/truenas/charts/tree/master/charts/nextcloud"
  311. ],
  312. "icon_url": "https://media.sys.truenas.net/apps/nextcloud/icons/icon.svg"
  313. },
  314. "syncthing": {
  315. "app_readme": "<h1>Syncthing</h1>\n<p><a href=\"https://syncthing.net/\">Syncthing</a> is a continuous file synchronization program. It synchronizes files between two or\nmore computers in real time, safely protected from prying eyes. Your data is your data alone and you deserve to choose\nwhere it is stored, whether it is shared with some third party, and how it's transmitted over the internet.</p>\n<blockquote>\n<p><strong>WARNING</strong> Do check out <a href=\"https://docs.syncthing.net/users/faq.html#what-things-are-synced\">official docs</a> to see what is synced.</p>\n</blockquote>",
  316. "categories": [
  317. "storage"
  318. ],
  319. "description": "Syncthing is a continuous file synchronization program.",
  320. "healthy": true,
  321. "healthy_error": null,
  322. "home": "https://syncthing.net/",
  323. "location": "/__w/charts/charts/charts/syncthing",
  324. "latest_version": "2.0.5",
  325. "latest_app_version": "1.27.6",
  326. "latest_human_version": "1.27.6_2.0.5",
  327. "last_update": "2024-04-15 09:28:51",
  328. "name": "syncthing",
  329. "recommended": false,
  330. "title": "Syncthing",
  331. "maintainers": [
  332. {
  333. "name": "truenas",
  334. "url": "https://www.truenas.com/",
  335. "email": "dev@ixsystems.com"
  336. }
  337. ],
  338. "tags": [
  339. "backup",
  340. "sync",
  341. "file-sharing"
  342. ],
  343. "screenshots": [
  344. "https://media.sys.truenas.net/apps/syncthing/screenshots/screenshot1.png",
  345. "https://media.sys.truenas.net/apps/syncthing/screenshots/screenshot2.png",
  346. "https://media.sys.truenas.net/apps/syncthing/screenshots/screenshot3.png",
  347. "https://media.sys.truenas.net/apps/syncthing/screenshots/screenshot4.png"
  348. ],
  349. "sources": [
  350. "https://syncthing.net",
  351. "https://github.com/truenas/charts/tree/master/charts/syncthing"
  352. ],
  353. "icon_url": "https://media.sys.truenas.net/apps/syncthing/icons/icon.svg"
  354. },
  355. "ix-chart": {
  356. "app_readme": "<h1>iX-Chart</h1>\n<p>iX-chart is a chart designed to let user deploy a docker image in a TrueNAS SCALE kubernetes cluster.\nIt provides a mechanism to specify workload type, add external host interfaces in the pods, configure volumes and allocate host resources to the workload.</p>",
  357. "categories": [
  358. "generic"
  359. ],
  360. "description": "A Helm chart for deploying simple workloads Kubernetes",
  361. "healthy": true,
  362. "healthy_error": null,
  363. "home": "https://www.truenas.com/",
  364. "location": "/__w/charts/charts/charts/ix-chart",
  365. "latest_version": "2403.0.0",
  366. "latest_app_version": "v1",
  367. "latest_human_version": "v1_2403.0.0",
  368. "last_update": "2024-04-15 09:28:51",
  369. "name": "ix-chart",
  370. "recommended": false,
  371. "title": "ix-chart",
  372. "maintainers": [
  373. {
  374. "name": "truenas",
  375. "url": "https://www.truenas.com/",
  376. "email": "dev@ixsystems.com"
  377. }
  378. ],
  379. "tags": [],
  380. "screenshots": [],
  381. "sources": [],
  382. "icon_url": null
  383. },
  384. "emby": {
  385. "app_readme": "<h1>Emby</h1>\n<p><a href=\"https://emby.media/\">Emby</a> is designed to help you manage your personal media library, such as home videos and photos</p>",
  386. "categories": [
  387. "media"
  388. ],
  389. "description": "Emby is designed to help you manage your personal media library, such as home videos and photos",
  390. "healthy": true,
  391. "healthy_error": null,
  392. "home": "https://emby.media/",
  393. "location": "/__w/charts/charts/charts/emby",
  394. "latest_version": "2.0.6",
  395. "latest_app_version": "4.8.3.0",
  396. "latest_human_version": "4.8.3.0_2.0.6",
  397. "last_update": "2024-04-15 09:28:51",
  398. "name": "emby",
  399. "recommended": false,
  400. "title": "Emby Server",
  401. "maintainers": [
  402. {
  403. "name": "truenas",
  404. "url": "https://www.truenas.com/",
  405. "email": "dev@ixsystems.com"
  406. }
  407. ],
  408. "tags": [
  409. "entertainment",
  410. "movies",
  411. "series",
  412. "tv",
  413. "streaming"
  414. ],
  415. "screenshots": [
  416. "https://media.sys.truenas.net/apps/emby/screenshots/screenshot1.png",
  417. "https://media.sys.truenas.net/apps/emby/screenshots/screenshot2.png"
  418. ],
  419. "sources": [
  420. "https://emby.media/",
  421. "https://hub.docker.com/r/emby/embyserver",
  422. "https://github.com/truenas/charts/tree/master/charts/emby"
  423. ],
  424. "icon_url": "https://media.sys.truenas.net/apps/emby/icons/icon.png"
  425. },
  426. "collabora": {
  427. "app_readme": "<h1>Collabora</h1>\n<p><a href=\"https://www.collaboraoffice.com/\">Collabora</a> is a collaborative online office suite based on LibreOffice technology</p>",
  428. "categories": [
  429. "productivity"
  430. ],
  431. "description": "Collabora is a collaborative online office suite based on LibreOffice technology",
  432. "healthy": true,
  433. "healthy_error": null,
  434. "home": "https://www.collaboraoffice.com/",
  435. "location": "/__w/charts/charts/charts/collabora",
  436. "latest_version": "2.0.12",
  437. "latest_app_version": "23.05.10.1.1",
  438. "latest_human_version": "23.05.10.1.1_2.0.12",
  439. "last_update": "2024-04-15 09:28:51",
  440. "name": "collabora",
  441. "recommended": false,
  442. "title": "Collabora",
  443. "maintainers": [
  444. {
  445. "name": "truenas",
  446. "url": "https://www.truenas.com/",
  447. "email": "dev@ixsystems.com"
  448. }
  449. ],
  450. "tags": [
  451. "office",
  452. "documents",
  453. "collaboration"
  454. ],
  455. "screenshots": [
  456. "https://media.sys.truenas.net/apps/collabora/screenshots/screenshot1.png"
  457. ],
  458. "sources": [
  459. "https://www.collaboraoffice.com/",
  460. "https://github.com/CollaboraOnline/online",
  461. "https://hub.docker.com/r/collabora/code"
  462. ],
  463. "icon_url": "https://media.sys.truenas.net/apps/collabora/icons/icon.png"
  464. },
  465. "photoprism": {
  466. "app_readme": "<h1>PhotoPrism</h1>\n<p><a href=\"https://photoprism.app/\">PhotoPrism</a> is a server-based application for browsing, organizing and sharing your personal photo collection.</p>",
  467. "categories": [
  468. "media"
  469. ],
  470. "description": "AI-powered app for browsing, organizing & sharing your photo collection.",
  471. "healthy": true,
  472. "healthy_error": null,
  473. "home": "https://photoprism.app/",
  474. "location": "/__w/charts/charts/charts/photoprism",
  475. "latest_version": "2.0.4",
  476. "latest_app_version": "231128",
  477. "latest_human_version": "231128_2.0.4",
  478. "last_update": "2024-04-15 09:28:51",
  479. "name": "photoprism",
  480. "recommended": false,
  481. "title": "PhotoPrism",
  482. "maintainers": [
  483. {
  484. "name": "truenas",
  485. "url": "https://www.truenas.com/",
  486. "email": "dev@ixsystems.com"
  487. }
  488. ],
  489. "tags": [
  490. "photos",
  491. "image"
  492. ],
  493. "screenshots": [
  494. "https://media.sys.truenas.net/apps/photoprism/screenshots/screenshot1.png",
  495. "https://media.sys.truenas.net/apps/photoprism/screenshots/screenshot2.png"
  496. ],
  497. "sources": [
  498. "https://photoprism.app/",
  499. "https://github.com/truenas/charts/tree/master/charts/photoprism"
  500. ],
  501. "icon_url": "https://media.sys.truenas.net/apps/photoprism/icons/icon.svg"
  502. },
  503. "wg-easy": {
  504. "app_readme": "<h1>WG-Easy</h1>\n<p><a href=\"https://github.com/WeeJeWel/wg-easy\">WG-Easy (WireGuard Easy)</a> is the easiest way to install &amp; manage WireGuard!</p>",
  505. "categories": [
  506. "networking"
  507. ],
  508. "description": "WG-Easy is the easiest way to install & manage WireGuard!",
  509. "healthy": true,
  510. "healthy_error": null,
  511. "home": "https://github.com/WeeJeWel/wg-easy",
  512. "location": "/__w/charts/charts/charts/wg-easy",
  513. "latest_version": "2.0.14",
  514. "latest_app_version": "12",
  515. "latest_human_version": "12_2.0.14",
  516. "last_update": "2024-04-15 09:28:51",
  517. "name": "wg-easy",
  518. "recommended": false,
  519. "title": "WG Easy",
  520. "maintainers": [
  521. {
  522. "name": "truenas",
  523. "url": "https://www.truenas.com/",
  524. "email": "dev@ixsystems.com"
  525. }
  526. ],
  527. "tags": [
  528. "vpn",
  529. "wireguard"
  530. ],
  531. "screenshots": [
  532. "https://media.sys.truenas.net/apps/wg-easy/screenshots/screenshot1.png"
  533. ],
  534. "sources": [
  535. "https://github.com/WeeJeWel/wg-easy",
  536. "https://github.com/truenas/charts/tree/master/charts/wg-easy"
  537. ],
  538. "icon_url": "https://media.sys.truenas.net/apps/wg-easy/icons/icon.png"
  539. },
  540. "pihole": {
  541. "app_readme": "<h1>Pi-hole</h1>\n<p><a href=\"https://pi-hole.net/\">Pi-hole</a> is a black hole for Internet advertisements</p>",
  542. "categories": [
  543. "networking"
  544. ],
  545. "description": "DNS and Ad-filtering for your network.",
  546. "healthy": true,
  547. "healthy_error": null,
  548. "home": "https://pi-hole.net/",
  549. "location": "/__w/charts/charts/charts/pihole",
  550. "latest_version": "2.0.10",
  551. "latest_app_version": "2024.03.2",
  552. "latest_human_version": "2024.03.2_2.0.10",
  553. "last_update": "2024-04-15 09:28:51",
  554. "name": "pihole",
  555. "recommended": false,
  556. "title": "Pi-hole",
  557. "maintainers": [
  558. {
  559. "name": "truenas",
  560. "url": "https://www.truenas.com/",
  561. "email": "dev@ixsystems.com"
  562. }
  563. ],
  564. "tags": [
  565. "dns",
  566. "adblock"
  567. ],
  568. "screenshots": [
  569. "https://media.sys.truenas.net/apps/pihole/screenshots/screenshot1.png"
  570. ],
  571. "sources": [
  572. "https://pi-hole.net/",
  573. "https://github.com/truenas/charts/tree/master/charts/pihole"
  574. ],
  575. "icon_url": "https://media.sys.truenas.net/apps/pihole/icons/icon.png"
  576. },
  577. "prometheus": {
  578. "app_readme": "<h1>Prometheus</h1>\n<p><a href=\"https://prometheus.io/\">Prometheus</a> - Monitoring system and time series database.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>prometheus</code> directories.\nAfterward, the <code>prometheus</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAlso an empty configuration file will be created.</p>\n</blockquote>\n<p>The configuration file is located at <code>/config/prometheus.yml</code> inside the container.\nData is stored at <code>/data</code> inside the container.</p>",
  579. "categories": [
  580. "monitoring"
  581. ],
  582. "description": "The Prometheus monitoring system and time series database.",
  583. "healthy": true,
  584. "healthy_error": null,
  585. "home": "https://prometheus.io",
  586. "location": "/__w/charts/charts/charts/prometheus",
  587. "latest_version": "1.1.14",
  588. "latest_app_version": "v2.51.2",
  589. "latest_human_version": "v2.51.2_1.1.14",
  590. "last_update": "2024-04-15 09:28:51",
  591. "name": "prometheus",
  592. "recommended": false,
  593. "title": "Prometheus",
  594. "maintainers": [
  595. {
  596. "name": "truenas",
  597. "url": "https://www.truenas.com/",
  598. "email": "dev@ixsystems.com"
  599. }
  600. ],
  601. "tags": [
  602. "metrics",
  603. "storage"
  604. ],
  605. "screenshots": [
  606. "https://media.sys.truenas.net/apps/prometheus/screenshots/screenshot1.png"
  607. ],
  608. "sources": [
  609. "https://github.com/prometheus/prometheus",
  610. "https://github.com/truenas/charts/tree/master/charts/prometheus",
  611. "https://prometheus.io"
  612. ],
  613. "icon_url": "https://media.sys.truenas.net/apps/prometheus/icons/icon.png"
  614. }
  615. },
  616. "test": {
  617. "sonarr": {
  618. "app_readme": "<h1>Sonarr</h1>\n<p><a href=\"https://github.com/Sonarr/Sonarr\">Sonarr</a> is a PVR for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Sonarr</code> directories.\nAfterward, the <code>Sonarr</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  619. "categories": [
  620. "media"
  621. ],
  622. "description": "Sonarr is a PVR for Usenet and BitTorrent users.",
  623. "healthy": true,
  624. "healthy_error": null,
  625. "home": "https://github.com/Sonarr/Sonarr",
  626. "location": "/__w/charts/charts/test/sonarr",
  627. "latest_version": "1.0.16",
  628. "latest_app_version": "3.0.10.1567",
  629. "latest_human_version": "3.0.10.1567_1.0.16",
  630. "last_update": "2024-04-15 09:28:51",
  631. "name": "sonarr",
  632. "recommended": false,
  633. "title": "Sonarr",
  634. "maintainers": [
  635. {
  636. "name": "truenas",
  637. "url": "https://www.truenas.com/",
  638. "email": "dev@ixsystems.com"
  639. }
  640. ],
  641. "tags": [
  642. "series"
  643. ],
  644. "screenshots": [
  645. "https://sonarr.tv/img/features/calendar.png",
  646. "https://sonarr.tv/img/features/manualsearch.png",
  647. "https://sonarr.tv/img/features/blocklist.png"
  648. ],
  649. "sources": [
  650. "https://github.com/onedr0p/containers/tree/main/apps/sonarr",
  651. "https://github.com/truenas/charts/tree/master/community/sonarr",
  652. "https://github.com/Sonarr/Sonarr"
  653. ],
  654. "icon_url": "https://raw.githubusercontent.com/Sonarr/Sonarr/develop/Logo/256.png"
  655. },
  656. "minio": {
  657. "app_readme": "<h1>MinIO</h1>\n<p><a href=\"https://min.io\">MinIO</a> is a High Performance Object Storage released under Apache License v2.0.\nIt is API compatible with Amazon S3 cloud storage service. Use MinIO to build high performance infrastructure\nfor machine learning, analytics and application data workloads.</p>\n<blockquote>\n<p>During the installation process, a container will be launched with <strong>root</strong> privileges. This is required\nin order to apply the correct permissions to the MinIO data directory. Afterward, the <code>MinIO</code> container\nwill run as a <strong>non</strong>-root user (<code>568</code>).\nSame applies to the <code>postgres</code> container. This will run afterwards as a <strong>non</strong>-root user (<code>999</code>).\nOn each upgrade, a container will be launched with <strong>root</strong> privileges in order to apply the correct\npermissions to the <code>postgres</code> backups directory. Container that performs the backup will run as a <strong>non</strong>-root user (<code>999</code>) afterwards.\nKeep in mind the permissions on the backup directory will be changed to <code>999:999</code> on <strong>every</strong> update.\nBut will only be changed once for the <code>MinIO</code> and <code>postgres</code> data directories.</p>\n</blockquote>\n<p>When Multi Mode is enabled and entries contain <code>://</code> (url) will enable Host Networking. Regardless of the selection in the <code>Networking</code> section.</p>",
  658. "categories": [
  659. "storage"
  660. ],
  661. "description": "High Performance, Kubernetes Native Object Storage",
  662. "healthy": true,
  663. "healthy_error": null,
  664. "home": "https://min.io",
  665. "location": "/__w/charts/charts/test/minio",
  666. "latest_version": "1.1.0",
  667. "latest_app_version": "2023-12-07",
  668. "latest_human_version": "2023-12-07_1.1.0",
  669. "last_update": "2024-04-15 09:28:51",
  670. "name": "minio",
  671. "recommended": false,
  672. "title": "MinIO",
  673. "maintainers": [
  674. {
  675. "name": "truenas",
  676. "url": "https://www.truenas.com/",
  677. "email": "dev@ixsystems.com"
  678. }
  679. ],
  680. "tags": [
  681. "object-storage",
  682. "S3",
  683. "file-sharing"
  684. ],
  685. "screenshots": [
  686. "https://media.sys.truenas.net/apps/minio/screenshots/screenshot1.png",
  687. "https://media.sys.truenas.net/apps/minio/screenshots/screenshot2.png",
  688. "https://media.sys.truenas.net/apps/minio/screenshots/screenshot3.png"
  689. ],
  690. "sources": [
  691. "https://github.com/minio/minio",
  692. "https://github.com/truenas/charts/tree/master/enterprise/minio"
  693. ],
  694. "icon_url": "https://media.sys.truenas.net/apps/minio/icons/icon.png"
  695. },
  696. "syncthing": {
  697. "app_readme": "<h1>Syncthing</h1>\n<p><a href=\"https://syncthing.net/\">Syncthing</a> is a file synchronization program.</p>\n<p>At each startup of the application, the following settings are applied:</p>\n<ul>\n<li>Disable automatic upgrades</li>\n<li>Disable anonymous usage reporting</li>\n<li>Disable NAT traversal</li>\n<li>Disable global discovery</li>\n<li>Disable local discovery</li>\n<li>Disable relaying</li>\n<li>Disable announcing LAN addresses</li>\n</ul>\n<p>Additionally, the following defaults are set for new synthing \"folders\":</p>\n<ul>\n<li>Max total size of <code>xattr</code>: 10 MiB</li>\n<li>Max size per <code>xattr</code>: 2 MiB</li>\n<li>Enable <code>send</code> and <code>sync</code> of <code>xattr</code></li>\n<li>Enable <code>send</code> and <code>sync</code> of <code>ownership</code></li>\n</ul>",
  698. "categories": [
  699. "storage"
  700. ],
  701. "description": "Syncthing is a continuous file synchronization program.",
  702. "healthy": true,
  703. "healthy_error": null,
  704. "home": "https://syncthing.net/",
  705. "location": "/__w/charts/charts/test/syncthing",
  706. "latest_version": "1.2.2",
  707. "latest_app_version": "1.27.0",
  708. "latest_human_version": "1.27.0_1.2.2",
  709. "last_update": "2024-04-15 09:28:51",
  710. "name": "syncthing",
  711. "recommended": false,
  712. "title": "Syncthing",
  713. "maintainers": [
  714. {
  715. "name": "truenas",
  716. "url": "https://www.truenas.com/",
  717. "email": "dev@ixsystems.com"
  718. }
  719. ],
  720. "tags": [
  721. "sync",
  722. "file-sharing"
  723. ],
  724. "screenshots": [
  725. "https://media.sys.truenas.net/apps/syncthing/screenshots/screenshot1.png",
  726. "https://media.sys.truenas.net/apps/syncthing/screenshots/screenshot2.png",
  727. "https://media.sys.truenas.net/apps/syncthing/screenshots/screenshot3.png",
  728. "https://media.sys.truenas.net/apps/syncthing/screenshots/screenshot4.png"
  729. ],
  730. "sources": [
  731. "https://syncthing.net/",
  732. "https://github.com/syncthing/syncthing",
  733. "https://hub.docker.com/r/syncthing/syncthing",
  734. "https://github.com/truenas/charts/tree/master/enterprise/syncthing"
  735. ],
  736. "icon_url": "https://media.sys.truenas.net/apps/syncthing/icons/icon.svg"
  737. },
  738. "jellyfin": {
  739. "app_readme": "<h1>Jellyfin</h1>\n<p><a href=\"https://jellyfin.org/\">Jellyfin</a> is a Free Software Media System that puts you in control of managing and streaming your media.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Jellyfin</code> directories.\nAfterward, the <code>Jellyfin</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  740. "categories": [
  741. "media"
  742. ],
  743. "description": "Jellyfin is a Free Software Media System that puts you in control of managing and streaming your media.",
  744. "healthy": true,
  745. "healthy_error": null,
  746. "home": "https://jellyfin.org/",
  747. "location": "/__w/charts/charts/test/jellyfin",
  748. "latest_version": "1.0.16",
  749. "latest_app_version": "10.8.13",
  750. "latest_human_version": "10.8.13_1.0.16",
  751. "last_update": "2024-04-15 09:28:51",
  752. "name": "jellyfin",
  753. "recommended": false,
  754. "title": "Jellyfin",
  755. "maintainers": [
  756. {
  757. "name": "truenas",
  758. "url": "https://www.truenas.com/",
  759. "email": "dev@ixsystems.com"
  760. }
  761. ],
  762. "tags": [
  763. "entertainment",
  764. "movies",
  765. "series",
  766. "tv",
  767. "streaming"
  768. ],
  769. "screenshots": [
  770. "https://jellyfin.org/assets/images/10.8-home-4a73a92bf90d1eeffa5081201ca9c7bb.png",
  771. "https://jellyfin.org/assets/images/10.8-details-df4f7caaee389ffbaeeaa95b668fa037.png"
  772. ],
  773. "sources": [
  774. "https://hub.docker.com/r/jellyfin/jellyfin",
  775. "https://github.com/truenas/charts/tree/master/community/jellyfin",
  776. "https://jellyfin.org/"
  777. ],
  778. "icon_url": "https://jellyfin.org/images/logo.svg"
  779. }
  780. },
  781. "enterprise": {
  782. "minio": {
  783. "app_readme": "<h1>MinIO</h1>\n<p><a href=\"https://min.io\">MinIO</a> is a High Performance Object Storage released under Apache License v2.0.\nIt is API compatible with Amazon S3 cloud storage service. Use MinIO to build high performance infrastructure\nfor machine learning, analytics and application data workloads.</p>\n<blockquote>\n<p>During the installation process, a container will be launched with <strong>root</strong> privileges. This is required\nin order to apply the correct permissions to the MinIO data directory. Afterward, the <code>MinIO</code> container\nwill run as a <strong>non</strong>-root user (<code>568</code>).\nSame applies to the <code>postgres</code> container. This will run afterwards as a <strong>non</strong>-root user (<code>999</code>).\nOn each upgrade, a container will be launched with <strong>root</strong> privileges in order to apply the correct\npermissions to the <code>postgres</code> backups directory. Container that performs the backup will run as a <strong>non</strong>-root user (<code>999</code>) afterwards.\nKeep in mind the permissions on the backup directory will be changed to <code>999:999</code> on <strong>every</strong> update.\nBut will only be changed once for the <code>MinIO</code> and <code>postgres</code> data directories.</p>\n</blockquote>\n<p>When Multi Mode is enabled and entries contain <code>://</code> (url) will enable Host Networking. Regardless of the selection in the <code>Networking</code> section.</p>",
  784. "categories": [
  785. "storage"
  786. ],
  787. "description": "High Performance, Kubernetes Native Object Storage",
  788. "healthy": true,
  789. "healthy_error": null,
  790. "home": "https://min.io",
  791. "location": "/__w/charts/charts/enterprise/minio",
  792. "latest_version": "1.1.3",
  793. "latest_app_version": "2023-12-07",
  794. "latest_human_version": "2023-12-07_1.1.3",
  795. "last_update": "2024-04-15 09:28:51",
  796. "name": "minio",
  797. "recommended": false,
  798. "title": "MinIO",
  799. "maintainers": [
  800. {
  801. "name": "truenas",
  802. "url": "https://www.truenas.com/",
  803. "email": "dev@ixsystems.com"
  804. }
  805. ],
  806. "tags": [
  807. "object-storage",
  808. "S3",
  809. "file-sharing"
  810. ],
  811. "screenshots": [
  812. "https://media.sys.truenas.net/apps/minio/screenshots/screenshot1.png",
  813. "https://media.sys.truenas.net/apps/minio/screenshots/screenshot2.png",
  814. "https://media.sys.truenas.net/apps/minio/screenshots/screenshot3.png"
  815. ],
  816. "sources": [
  817. "https://github.com/minio/minio",
  818. "https://github.com/truenas/charts/tree/master/enterprise/minio"
  819. ],
  820. "icon_url": "https://media.sys.truenas.net/apps/minio/icons/icon.png"
  821. },
  822. "syncthing": {
  823. "app_readme": "<h1>Syncthing</h1>\n<p><a href=\"https://syncthing.net/\">Syncthing</a> is a file synchronization program.</p>\n<p>At each startup of the application, the following settings are applied:</p>\n<ul>\n<li>Disable automatic upgrades</li>\n<li>Disable anonymous usage reporting</li>\n<li>Disable NAT traversal</li>\n<li>Disable global discovery</li>\n<li>Disable local discovery</li>\n<li>Disable relaying</li>\n<li>Disable announcing LAN addresses</li>\n</ul>\n<p>Additionally, the following defaults are set for new synthing \"folders\":</p>\n<ul>\n<li>Max total size of <code>xattr</code>: 10 MiB</li>\n<li>Max size per <code>xattr</code>: 2 MiB</li>\n<li>Enable <code>send</code> and <code>sync</code> of <code>xattr</code></li>\n<li>Enable <code>send</code> and <code>sync</code> of <code>ownership</code></li>\n</ul>",
  824. "categories": [
  825. "storage"
  826. ],
  827. "description": "Syncthing is a continuous file synchronization program.",
  828. "healthy": true,
  829. "healthy_error": null,
  830. "home": "https://syncthing.net/",
  831. "location": "/__w/charts/charts/enterprise/syncthing",
  832. "latest_version": "1.1.8",
  833. "latest_app_version": "1.27.0",
  834. "latest_human_version": "1.27.0_1.1.8",
  835. "last_update": "2024-04-15 09:28:51",
  836. "name": "syncthing",
  837. "recommended": false,
  838. "title": "Syncthing",
  839. "maintainers": [
  840. {
  841. "name": "truenas",
  842. "url": "https://www.truenas.com/",
  843. "email": "dev@ixsystems.com"
  844. }
  845. ],
  846. "tags": [
  847. "sync",
  848. "file-sharing"
  849. ],
  850. "screenshots": [
  851. "https://media.sys.truenas.net/apps/syncthing/screenshots/screenshot1.png",
  852. "https://media.sys.truenas.net/apps/syncthing/screenshots/screenshot2.png",
  853. "https://media.sys.truenas.net/apps/syncthing/screenshots/screenshot3.png",
  854. "https://media.sys.truenas.net/apps/syncthing/screenshots/screenshot4.png"
  855. ],
  856. "sources": [
  857. "https://syncthing.net/",
  858. "https://github.com/syncthing/syncthing",
  859. "https://hub.docker.com/r/syncthing/syncthing",
  860. "https://github.com/truenas/charts/tree/master/enterprise/syncthing"
  861. ],
  862. "icon_url": "https://media.sys.truenas.net/apps/syncthing/icons/icon.svg"
  863. }
  864. },
  865. "community": {
  866. "fscrawler": {
  867. "app_readme": "<h1>FSCrawler</h1>\n<p><a href=\"https://fscrawler.readthedocs.io/\">FSCrawler</a> is a crawler that helps to index binary documents such as PDF, Open Office, MS Office.</p>",
  868. "categories": [
  869. "productivity"
  870. ],
  871. "description": "FSCrawler is a crawler that helps to index binary documents such as PDF, Open Office, MS Office.",
  872. "healthy": true,
  873. "healthy_error": null,
  874. "home": "https://fscrawler.readthedocs.io/",
  875. "location": "/__w/charts/charts/community/fscrawler",
  876. "latest_version": "1.2.4",
  877. "latest_app_version": "2.9",
  878. "latest_human_version": "2.9_1.2.4",
  879. "last_update": "2024-04-15 09:28:51",
  880. "name": "fscrawler",
  881. "recommended": false,
  882. "title": "FSCrawler",
  883. "maintainers": [
  884. {
  885. "name": "truenas",
  886. "url": "https://www.truenas.com/",
  887. "email": "dev@ixsystems.com"
  888. }
  889. ],
  890. "tags": [
  891. "index",
  892. "crawler"
  893. ],
  894. "screenshots": [],
  895. "sources": [
  896. "https://github.com/dadoonet/fscrawler",
  897. "https://github.com/truenas/charts/tree/master/community/fscrawler",
  898. "https://hub.docker.com/r/dadoonet/fscrawler",
  899. "https://fscrawler.readthedocs.io/"
  900. ],
  901. "icon_url": "https://localhost/no-icon"
  902. },
  903. "tiny-media-manager": {
  904. "app_readme": "<h1>tinyMediaManager</h1>\n<p><a href=\"https://www.tinymediamanager.org/\">tinyMediaManager</a> is a media management tool written in Java/Swing.</p>",
  905. "categories": [
  906. "media"
  907. ],
  908. "description": "tinyMediaManager is a media management tool written in Java/Swing.",
  909. "healthy": true,
  910. "healthy_error": null,
  911. "home": "https://www.tinymediamanager.org/",
  912. "location": "/__w/charts/charts/community/tiny-media-manager",
  913. "latest_version": "1.2.7",
  914. "latest_app_version": "5.0.4",
  915. "latest_human_version": "5.0.4_1.2.7",
  916. "last_update": "2024-04-15 09:28:51",
  917. "name": "tiny-media-manager",
  918. "recommended": false,
  919. "title": "tinyMediaManager",
  920. "maintainers": [
  921. {
  922. "name": "truenas",
  923. "url": "https://www.truenas.com/",
  924. "email": "dev@ixsystems.com"
  925. }
  926. ],
  927. "tags": [
  928. "tv-shows",
  929. "movies"
  930. ],
  931. "screenshots": [
  932. "https://media.sys.truenas.net/apps/tiny-media-manager/screenshots/screenshot1.png",
  933. "https://media.sys.truenas.net/apps/tiny-media-manager/screenshots/screenshot2.png",
  934. "https://media.sys.truenas.net/apps/tiny-media-manager/screenshots/screenshot3.png",
  935. "https://media.sys.truenas.net/apps/tiny-media-manager/screenshots/screenshot4.png"
  936. ],
  937. "sources": [
  938. "https://www.tinymediamanager.org/",
  939. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/tiny-media-manager",
  940. "https://hub.docker.com/r/tinymediamanager/tinymediamanager"
  941. ],
  942. "icon_url": "https://media.sys.truenas.net/apps/tiny-media-manager/icons/icon.png"
  943. },
  944. "sonarr": {
  945. "app_readme": "<h1>Sonarr</h1>\n<p><a href=\"https://github.com/Sonarr/Sonarr\">Sonarr</a> is a PVR for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Sonarr</code> directories.\nAfterward, the <code>Sonarr</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  946. "categories": [
  947. "media"
  948. ],
  949. "description": "Sonarr is a PVR for Usenet and BitTorrent users.",
  950. "healthy": true,
  951. "healthy_error": null,
  952. "home": "https://github.com/Sonarr/Sonarr",
  953. "location": "/__w/charts/charts/community/sonarr",
  954. "latest_version": "1.2.13",
  955. "latest_app_version": "4.0.4.1491",
  956. "latest_human_version": "4.0.4.1491_1.2.13",
  957. "last_update": "2024-04-15 09:30:16",
  958. "name": "sonarr",
  959. "recommended": false,
  960. "title": "Sonarr",
  961. "maintainers": [
  962. {
  963. "name": "truenas",
  964. "url": "https://www.truenas.com/",
  965. "email": "dev@ixsystems.com"
  966. }
  967. ],
  968. "tags": [
  969. "series"
  970. ],
  971. "screenshots": [
  972. "https://media.sys.truenas.net/apps/sonarr/screenshots/screenshot1.png",
  973. "https://media.sys.truenas.net/apps/sonarr/screenshots/screenshot2.png",
  974. "https://media.sys.truenas.net/apps/sonarr/screenshots/screenshot3.png"
  975. ],
  976. "sources": [
  977. "https://github.com/onedr0p/containers/tree/main/apps/sonarr",
  978. "https://github.com/truenas/charts/tree/master/community/sonarr",
  979. "https://github.com/Sonarr/Sonarr"
  980. ],
  981. "icon_url": "https://media.sys.truenas.net/apps/sonarr/icons/icon.png"
  982. },
  983. "roundcube": {
  984. "app_readme": "<h1>Roundcube</h1>\n<p><a href=\"https://roundcube.net/\">Roundcube</a> is a browser-based multilingual IMAP client with an application-like user interface.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>postgres</code> directories.\nAfterward, the <code>postgres</code> container will run as a <strong>non</strong>-root user (<code>999</code>).\nOn each upgrade, a container will be launched with <strong>root</strong> privileges in order to apply the correct\npermissions to the <code>postgres</code> <strong>backups</strong> directory. Container that performs the backup will run as a <strong>non</strong>-root user (<code>999</code>) afterwards.\nKeep in mind the permissions on the backup directory will be changed to <code>999:999</code> on <strong>every</strong> update.\nBut will only be changed once for the <code>postgres</code> data directories.</p>\n</blockquote>",
  985. "categories": [
  986. "productivity"
  987. ],
  988. "description": "Roundcube is a browser-based multilingual IMAP client with an application-like user interface.",
  989. "healthy": true,
  990. "healthy_error": null,
  991. "home": "https://roundcube.net/",
  992. "location": "/__w/charts/charts/community/roundcube",
  993. "latest_version": "1.0.3",
  994. "latest_app_version": "1.6.6",
  995. "latest_human_version": "1.6.6_1.0.3",
  996. "last_update": "2024-04-15 09:28:51",
  997. "name": "roundcube",
  998. "recommended": false,
  999. "title": "Roundcube",
  1000. "maintainers": [
  1001. {
  1002. "name": "truenas",
  1003. "url": "https://www.truenas.com/",
  1004. "email": "dev@ixsystems.com"
  1005. }
  1006. ],
  1007. "tags": [
  1008. "webmail",
  1009. "email"
  1010. ],
  1011. "screenshots": [
  1012. "https://media.sys.truenas.net/apps/roundcube/screenshots/screenshot1.png",
  1013. "https://media.sys.truenas.net/apps/roundcube/screenshots/screenshot2.png",
  1014. "https://media.sys.truenas.net/apps/roundcube/screenshots/screenshot3.png",
  1015. "https://media.sys.truenas.net/apps/roundcube/screenshots/screenshot4.png",
  1016. "https://media.sys.truenas.net/apps/roundcube/screenshots/screenshot5.png"
  1017. ],
  1018. "sources": [
  1019. "https://roundcube.net/",
  1020. "https://github.com/truenas/charts/tree/master/community/roundcube",
  1021. "https://hub.docker.com/r/roundcube/roundcubemail/"
  1022. ],
  1023. "icon_url": "https://media.sys.truenas.net/apps/roundcube/icons/icon.png"
  1024. },
  1025. "flame": {
  1026. "app_readme": "<h1>Flame</h1>\n<p><a href=\"https://github.com/pawelmalak/flame\">Flame</a> is a self-hosted start page for your server.</p>",
  1027. "categories": [
  1028. "productivity"
  1029. ],
  1030. "description": "Flame is a self-hosted start page for your server.",
  1031. "healthy": true,
  1032. "healthy_error": null,
  1033. "home": "https://github.com/pawelmalak/flame",
  1034. "location": "/__w/charts/charts/community/flame",
  1035. "latest_version": "1.2.4",
  1036. "latest_app_version": "2.3.1",
  1037. "latest_human_version": "2.3.1_1.2.4",
  1038. "last_update": "2024-04-15 09:28:51",
  1039. "name": "flame",
  1040. "recommended": false,
  1041. "title": "Flame",
  1042. "maintainers": [
  1043. {
  1044. "name": "truenas",
  1045. "url": "https://www.truenas.com/",
  1046. "email": "dev@ixsystems.com"
  1047. }
  1048. ],
  1049. "tags": [
  1050. "startpage"
  1051. ],
  1052. "screenshots": [
  1053. "https://media.sys.truenas.net/apps/flame/screenshots/screenshot1.png"
  1054. ],
  1055. "sources": [
  1056. "https://hub.docker.com/r/pawelmalak/flame",
  1057. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/flame",
  1058. "https://github.com/pawelmalak/flame"
  1059. ],
  1060. "icon_url": "https://media.sys.truenas.net/apps/flame/icons/icon.png"
  1061. },
  1062. "komga": {
  1063. "app_readme": "<h1>Komga</h1>\n<p><a href=\"https://github.com/gotson/komga\">Komga</a> is a free and open source comics/mangas server.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Komga</code> directories.\nAfterward, the <code>Komga</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  1064. "categories": [
  1065. "media"
  1066. ],
  1067. "description": "Komga is a free and open source comics/mangas server.",
  1068. "healthy": true,
  1069. "healthy_error": null,
  1070. "home": "https://komga.org",
  1071. "location": "/__w/charts/charts/community/komga",
  1072. "latest_version": "1.2.8",
  1073. "latest_app_version": "1.10.4",
  1074. "latest_human_version": "1.10.4_1.2.8",
  1075. "last_update": "2024-04-15 09:28:51",
  1076. "name": "komga",
  1077. "recommended": false,
  1078. "title": "Komga",
  1079. "maintainers": [
  1080. {
  1081. "name": "truenas",
  1082. "url": "https://www.truenas.com/",
  1083. "email": "dev@ixsystems.com"
  1084. }
  1085. ],
  1086. "tags": [
  1087. "comics",
  1088. "mangas"
  1089. ],
  1090. "screenshots": [
  1091. "https://media.sys.truenas.net/apps/komga/screenshots/screenshot1.png"
  1092. ],
  1093. "sources": [
  1094. "https://github.com/gotson/komga",
  1095. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/komga",
  1096. "https://hub.docker.com/r/gotson/komga"
  1097. ],
  1098. "icon_url": "https://media.sys.truenas.net/apps/komga/icons/icon.svg"
  1099. },
  1100. "radarr": {
  1101. "app_readme": "<h1>Radarr</h1>\n<p><a href=\"https://github.com/Radarr/Radarr\">Radarr</a> is a movie collection manager for Usenet and BitTorrent users.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Radarr</code> directories.\nAfterward, the <code>Radarr</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  1102. "categories": [
  1103. "media"
  1104. ],
  1105. "description": "Radarr is a movie collection manager for Usenet and BitTorrent users.",
  1106. "healthy": true,
  1107. "healthy_error": null,
  1108. "home": "https://github.com/Radarr/Radarr",
  1109. "location": "/__w/charts/charts/community/radarr",
  1110. "latest_version": "1.2.11",
  1111. "latest_app_version": "5.4.6.8723",
  1112. "latest_human_version": "5.4.6.8723_1.2.11",
  1113. "last_update": "2024-04-15 09:30:16",
  1114. "name": "radarr",
  1115. "recommended": false,
  1116. "title": "Radarr",
  1117. "maintainers": [
  1118. {
  1119. "name": "truenas",
  1120. "url": "https://www.truenas.com/",
  1121. "email": "dev@ixsystems.com"
  1122. }
  1123. ],
  1124. "tags": [
  1125. "movies"
  1126. ],
  1127. "screenshots": [
  1128. "https://media.sys.truenas.net/apps/radarr/screenshots/screenshot1.png",
  1129. "https://media.sys.truenas.net/apps/radarr/screenshots/screenshot2.png",
  1130. "https://media.sys.truenas.net/apps/radarr/screenshots/screenshot3.png",
  1131. "https://media.sys.truenas.net/apps/radarr/screenshots/screenshot4.png"
  1132. ],
  1133. "sources": [
  1134. "https://github.com/onedr0p/containers/tree/main/apps/radarr",
  1135. "https://github.com/truenas/charts/tree/master/community/radarr",
  1136. "https://github.com/Radarr/Radarr"
  1137. ],
  1138. "icon_url": "https://media.sys.truenas.net/apps/radarr/icons/icon.png"
  1139. },
  1140. "twofactor-auth": {
  1141. "app_readme": "<h1>2FAuth</h1>\n<p><a href=\"https://docs.2fauth.app/\">2FAuth</a> is a web based self-hosted alternative to One Time Passcode (OTP) generators like Google Authenticator, designed for both mobile and desktop.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>2FAuth</code> directories.\nAfterward, the <code>2FAuth</code> container will run as a <strong>non</strong>-root user (<code>1000</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  1142. "categories": [
  1143. "security"
  1144. ],
  1145. "description": "2FAuth is a web based self-hosted alternative to One Time Passcode (OTP) generators like Google Authenticator, designed for both mobile and desktop.",
  1146. "healthy": true,
  1147. "healthy_error": null,
  1148. "home": "https://docs.2fauth.app/",
  1149. "location": "/__w/charts/charts/community/twofactor-auth",
  1150. "latest_version": "1.2.6",
  1151. "latest_app_version": "5.1.1",
  1152. "latest_human_version": "5.1.1_1.2.6",
  1153. "last_update": "2024-04-15 09:28:51",
  1154. "name": "twofactor-auth",
  1155. "recommended": false,
  1156. "title": "2FAuth",
  1157. "maintainers": [
  1158. {
  1159. "name": "truenas",
  1160. "url": "https://www.truenas.com/",
  1161. "email": "dev@ixsystems.com"
  1162. }
  1163. ],
  1164. "tags": [
  1165. "2fa",
  1166. "otp"
  1167. ],
  1168. "screenshots": [
  1169. "https://media.sys.truenas.net/apps/twofactor-auth/screenshots/screenshot1.png"
  1170. ],
  1171. "sources": [
  1172. "https://github.com/Bubka/2FAuth",
  1173. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/2fauth",
  1174. "https://hub.docker.com/r/2fauth/2fauth/"
  1175. ],
  1176. "icon_url": "https://media.sys.truenas.net/apps/twofactor-auth/icons/icon.png"
  1177. },
  1178. "minecraft": {
  1179. "app_readme": "<h1>Minecraft</h1>\n<p><a href=\"https://www.minecraft.net/en-us\">Minecraft</a> is a sandbox game</p>\n<blockquote>\n<p>Application requires to run as root.</p>\n</blockquote>\n<p>Depending on the <code>Type</code> of server selected, you might need to add additional\ncustom environment variables to the application.</p>\n<p>More info can be found <a href=\"https://itzg.github.io/docker-minecraft-docs/java/server-types/bukkit-spigot/\">here</a>\nSelect the type on the sidebar.</p>\n<p>Note that some values are only applicable during the world generation.\nMore info can be found <a href=\"https://itzg.github.io/docker-minecraft-docs/\">here</a></p>",
  1180. "categories": [
  1181. "games"
  1182. ],
  1183. "description": "Minecraft is a sandbox game",
  1184. "healthy": true,
  1185. "healthy_error": null,
  1186. "home": "https://www.minecraft.net/en-us",
  1187. "location": "/__w/charts/charts/community/minecraft",
  1188. "latest_version": "1.2.8",
  1189. "latest_app_version": "2024.4.0",
  1190. "latest_human_version": "2024.4.0_1.2.8",
  1191. "last_update": "2024-04-15 09:28:51",
  1192. "name": "minecraft",
  1193. "recommended": false,
  1194. "title": "Minecraft",
  1195. "maintainers": [
  1196. {
  1197. "name": "truenas",
  1198. "url": "https://www.truenas.com/",
  1199. "email": "dev@ixsystems.com"
  1200. }
  1201. ],
  1202. "tags": [
  1203. "world",
  1204. "building"
  1205. ],
  1206. "screenshots": [],
  1207. "sources": [
  1208. "https://www.minecraft.net/en-us",
  1209. "https://github.com/truenas/charts/tree/master/community/minecraft",
  1210. "https://github.com/itzg/docker-minecraft-server"
  1211. ],
  1212. "icon_url": "https://media.sys.truenas.net/apps/minecraft/icons/icon.svg"
  1213. },
  1214. "zerotier": {
  1215. "app_readme": "<h1>Zerotier</h1>\n<p><a href=\"https://www.zerotier.com\">Zerotier</a> Securely connect any device, anywhere.</p>",
  1216. "categories": [
  1217. "networking"
  1218. ],
  1219. "description": "Securely connect any device, anywhere.",
  1220. "healthy": true,
  1221. "healthy_error": null,
  1222. "home": "https://www.zerotier.com",
  1223. "location": "/__w/charts/charts/community/zerotier",
  1224. "latest_version": "1.0.19",
  1225. "latest_app_version": "1.12.2",
  1226. "latest_human_version": "1.12.2_1.0.19",
  1227. "last_update": "2024-04-15 09:28:51",
  1228. "name": "zerotier",
  1229. "recommended": false,
  1230. "title": "Zerotier",
  1231. "maintainers": [
  1232. {
  1233. "name": "truenas",
  1234. "url": "https://www.truenas.com/",
  1235. "email": "dev@ixsystems.com"
  1236. }
  1237. ],
  1238. "tags": [
  1239. "vpn"
  1240. ],
  1241. "screenshots": [],
  1242. "sources": [
  1243. "https://www.zerotier.com",
  1244. "https://github.com/truenas/charts/tree/master/community/zerotier",
  1245. "https://hub.docker.com/r/zerotier/zerotier"
  1246. ],
  1247. "icon_url": "https://media.sys.truenas.net/apps/zerotier/icons/icon.png"
  1248. },
  1249. "searxng": {
  1250. "app_readme": "<h1>SearXNG</h1>\n<p><a href=\"https://github.com/searxng/searxng\">SearXNG</a> is a privacy-respecting, hackable metasearch engine</p>",
  1251. "categories": [
  1252. "productivity"
  1253. ],
  1254. "description": "SearXNG is a privacy-respecting, hackable metasearch engine",
  1255. "healthy": true,
  1256. "healthy_error": null,
  1257. "home": "https://github.com/searxng/searxng",
  1258. "location": "/__w/charts/charts/community/searxng",
  1259. "latest_version": "1.2.18",
  1260. "latest_app_version": "2023.12.31",
  1261. "latest_human_version": "2023.12.31_1.2.18",
  1262. "last_update": "2024-04-15 09:28:51",
  1263. "name": "searxng",
  1264. "recommended": false,
  1265. "title": "SearXNG",
  1266. "maintainers": [
  1267. {
  1268. "name": "truenas",
  1269. "url": "https://www.truenas.com/",
  1270. "email": "dev@ixsystems.com"
  1271. }
  1272. ],
  1273. "tags": [
  1274. "search"
  1275. ],
  1276. "screenshots": [],
  1277. "sources": [
  1278. "https://hub.docker.com/r/searxng/searxng",
  1279. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/searxng",
  1280. "https://github.com/searxng/searxng"
  1281. ],
  1282. "icon_url": "https://media.sys.truenas.net/apps/searxng/icons/icon.svg"
  1283. },
  1284. "n8n": {
  1285. "app_readme": "<h1>n8n</h1>\n<p><a href=\"https://n8n.io/\">n8n</a> is an extendable workflow automation tool.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>postgres</code> directories.\nAfterward, the <code>postgres</code> container will run as a <strong>non</strong>-root user (<code>999</code>).\nOn each upgrade, a container will be launched with <strong>root</strong> privileges in order to apply the correct\npermissions to the <code>postgres</code> <strong>backups</strong> directory. Container that performs the backup will run as a <strong>non</strong>-root user (<code>999</code>) afterwards.\nKeep in mind the permissions on the backup directory will be changed to <code>999:999</code> on <strong>every</strong> update.\nBut will only be changed once for the <code>postgres</code> data directories.</p>\n</blockquote>",
  1286. "categories": [
  1287. "productivity"
  1288. ],
  1289. "description": "n8n is an extendable workflow automation tool.",
  1290. "healthy": true,
  1291. "healthy_error": null,
  1292. "home": "https://n8n.io/",
  1293. "location": "/__w/charts/charts/community/n8n",
  1294. "latest_version": "1.2.39",
  1295. "latest_app_version": "1.37.1",
  1296. "latest_human_version": "1.37.1_1.2.39",
  1297. "last_update": "2024-04-15 09:28:51",
  1298. "name": "n8n",
  1299. "recommended": false,
  1300. "title": "n8n",
  1301. "maintainers": [
  1302. {
  1303. "name": "truenas",
  1304. "url": "https://www.truenas.com/",
  1305. "email": "dev@ixsystems.com"
  1306. }
  1307. ],
  1308. "tags": [
  1309. "workflows",
  1310. "automation"
  1311. ],
  1312. "screenshots": [
  1313. "https://media.sys.truenas.net/apps/n8n/screenshots/screenshot1.png",
  1314. "https://media.sys.truenas.net/apps/n8n/screenshots/screenshot2.png",
  1315. "https://media.sys.truenas.net/apps/n8n/screenshots/screenshot3.png",
  1316. "https://media.sys.truenas.net/apps/n8n/screenshots/screenshot4.png"
  1317. ],
  1318. "sources": [
  1319. "https://github.com/n8n-io/n8n",
  1320. "https://github.com/truenas/charts/tree/master/community/n8n",
  1321. "https://hub.docker.com/r/n8nio/n8n"
  1322. ],
  1323. "icon_url": "https://media.sys.truenas.net/apps/n8n/icons/icon.png"
  1324. },
  1325. "palworld": {
  1326. "app_readme": "<h1>Palworld</h1>\n<p><a href=\"https://www.pocketpair.jp/palworld\">Palworld</a> is a multiplayer, open-world survival crafting game where you befriend and collect mysterious creatures called \"Pals\".</p>",
  1327. "categories": [
  1328. "games"
  1329. ],
  1330. "description": "Palworld is a multiplayer, open-world survival crafting game where you befriend and collect mysterious creatures called \"Pals\".",
  1331. "healthy": true,
  1332. "healthy_error": null,
  1333. "home": "https://www.pocketpair.jp/palworld",
  1334. "location": "/__w/charts/charts/community/palworld",
  1335. "latest_version": "1.0.4",
  1336. "latest_app_version": "palworld",
  1337. "latest_human_version": "palworld_1.0.4",
  1338. "last_update": "2024-04-15 09:28:51",
  1339. "name": "palworld",
  1340. "recommended": false,
  1341. "title": "Palworld",
  1342. "maintainers": [
  1343. {
  1344. "name": "truenas",
  1345. "url": "https://www.truenas.com/",
  1346. "email": "dev@ixsystems.com"
  1347. }
  1348. ],
  1349. "tags": [
  1350. "palworld"
  1351. ],
  1352. "screenshots": [],
  1353. "sources": [
  1354. "https://www.pocketpair.jp/palworld",
  1355. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/palworld",
  1356. "https://github.com/ich777/docker-steamcmd-server/tree/palworld"
  1357. ],
  1358. "icon_url": "https://media.sys.truenas.net/apps/palworld/icons/icon.webp"
  1359. },
  1360. "nginx-proxy-manager": {
  1361. "app_readme": "<h1>Nginx Proxy Manager</h1>\n<p><a href=\"https://nginxproxymanager.com\">Nginx Proxy Manager</a> Expose your services easily and securely</p>\n<blockquote>\n<p>Application requires to run as root. This is a limitation of the application.</p>\n</blockquote>",
  1362. "categories": [
  1363. "networking"
  1364. ],
  1365. "description": "Expose your services easily and securely",
  1366. "healthy": true,
  1367. "healthy_error": null,
  1368. "home": "https://nginxproxymanager.com/",
  1369. "location": "/__w/charts/charts/community/nginx-proxy-manager",
  1370. "latest_version": "1.0.29",
  1371. "latest_app_version": "2.11.1",
  1372. "latest_human_version": "2.11.1_1.0.29",
  1373. "last_update": "2024-04-15 09:28:51",
  1374. "name": "nginx-proxy-manager",
  1375. "recommended": false,
  1376. "title": "Nginx Proxy Manager",
  1377. "maintainers": [
  1378. {
  1379. "name": "truenas",
  1380. "url": "https://www.truenas.com/",
  1381. "email": "dev@ixsystems.com"
  1382. }
  1383. ],
  1384. "tags": [
  1385. "reverse",
  1386. "proxy"
  1387. ],
  1388. "screenshots": [
  1389. "https://media.sys.truenas.net/apps/nginx-proxy-manager/screenshots/screenshot1.png",
  1390. "https://media.sys.truenas.net/apps/nginx-proxy-manager/screenshots/screenshot2.png",
  1391. "https://media.sys.truenas.net/apps/nginx-proxy-manager/screenshots/screenshot3.png"
  1392. ],
  1393. "sources": [
  1394. "https://nginxproxymanager.com/",
  1395. "https://github.com/truenas/charts/tree/master/community/nginx-proxy-manager",
  1396. "https://hub.docker.com/r/jc21/nginx-proxy-manager"
  1397. ],
  1398. "icon_url": "https://media.sys.truenas.net/apps/nginx-proxy-manager/icons/icon.png"
  1399. },
  1400. "mumble": {
  1401. "app_readme": "<h1>Mumble</h1>\n<p><a href=\"https://www.mumble.info/\">Mumble</a> is an Open Source, Low Latency, High Quality Voice Chat Home Downloads Documentation Blog Contribute About</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Mumble</code> directories.\nAfterward, the <code>Mumble</code> container will run as a <strong>non</strong>-root user (<code>1000</code>, Cannot change).</p>\n</blockquote>\n<p>You can change the server configuration by adding additional environment variables.\nPrefix the configuration variable with <code>MUMBLE_CONFIG_</code> and it will be added to the configuration file.\nView the <a href=\"https://wiki.mumble.info/wiki/Murmur.ini\">Mumble Configuration File</a> for more information.</p>\n<p>For example you can set <code>autobanAttempts</code> like this:</p>\n<ul>\n<li>Name: <code>MUMBLE_CONFIG_autobanAttempts</code></li>\n<li>Value: <code>5</code></li>\n</ul>",
  1402. "categories": [
  1403. "productivity"
  1404. ],
  1405. "description": "Mumble is a free, open source, low latency, high quality voice chat application.",
  1406. "healthy": true,
  1407. "healthy_error": null,
  1408. "home": "https://www.mumble.info/",
  1409. "location": "/__w/charts/charts/community/mumble",
  1410. "latest_version": "1.0.22",
  1411. "latest_app_version": "v1.4.230",
  1412. "latest_human_version": "v1.4.230_1.0.22",
  1413. "last_update": "2024-04-15 09:28:51",
  1414. "name": "mumble",
  1415. "recommended": false,
  1416. "title": "Mumble",
  1417. "maintainers": [
  1418. {
  1419. "name": "truenas",
  1420. "url": "https://www.truenas.com/",
  1421. "email": "dev@ixsystems.com"
  1422. }
  1423. ],
  1424. "tags": [
  1425. "voice"
  1426. ],
  1427. "screenshots": [],
  1428. "sources": [
  1429. "https://github.com/mumble-voip/mumble-docker",
  1430. "https://github.com/truenas/charts/tree/master/community/mumble",
  1431. "https://www.mumble.info/"
  1432. ],
  1433. "icon_url": "https://media.sys.truenas.net/apps/mumble/icons/icon.svg"
  1434. },
  1435. "pigallery2": {
  1436. "app_readme": "<h1>PiGallery2</h1>\n<p><a href=\"https://bpatrik.github.io/pigallery2\">PiGallery2</a> is a fast directory-first photo gallery website, with rich UI, optimized for running on low resource servers</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>PiGallery2</code> directories.\nAfterward, the <code>PiGallery2</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  1437. "categories": [
  1438. "media"
  1439. ],
  1440. "description": "PiGallery2 is a fast directory-first photo gallery website, with rich UI, optimized for running on low resource servers",
  1441. "healthy": true,
  1442. "healthy_error": null,
  1443. "home": "https://bpatrik.github.io/pigallery2",
  1444. "location": "/__w/charts/charts/community/pigallery2",
  1445. "latest_version": "1.2.4",
  1446. "latest_app_version": "2.0.0",
  1447. "latest_human_version": "2.0.0_1.2.4",
  1448. "last_update": "2024-04-15 09:28:51",
  1449. "name": "pigallery2",
  1450. "recommended": false,
  1451. "title": "PiGallery2",
  1452. "maintainers": [
  1453. {
  1454. "name": "truenas",
  1455. "url": "https://www.truenas.com/",
  1456. "email": "dev@ixsystems.com"
  1457. }
  1458. ],
  1459. "tags": [
  1460. "photo"
  1461. ],
  1462. "screenshots": [
  1463. "https://media.sys.truenas.net/apps/pigallery2/screenshots/screenshot1.png",
  1464. "https://media.sys.truenas.net/apps/pigallery2/screenshots/screenshot2.png",
  1465. "https://media.sys.truenas.net/apps/pigallery2/screenshots/screenshot3.png",
  1466. "https://media.sys.truenas.net/apps/pigallery2/screenshots/screenshot4.png",
  1467. "https://media.sys.truenas.net/apps/pigallery2/screenshots/screenshot5.png",
  1468. "https://media.sys.truenas.net/apps/pigallery2/screenshots/screenshot6.png",
  1469. "https://media.sys.truenas.net/apps/pigallery2/screenshots/screenshot7.png",
  1470. "https://media.sys.truenas.net/apps/pigallery2/screenshots/screenshot8.png",
  1471. "https://media.sys.truenas.net/apps/pigallery2/screenshots/screenshot9.png",
  1472. "https://media.sys.truenas.net/apps/pigallery2/screenshots/screenshot10.png"
  1473. ],
  1474. "sources": [
  1475. "https://hub.docker.com/r/bpatrik/pigallery2",
  1476. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/pigallery2",
  1477. "https://github.com/bpatrik/pigallery2"
  1478. ],
  1479. "icon_url": "https://media.sys.truenas.net/apps/pigallery2/icons/icon.png"
  1480. },
  1481. "distribution": {
  1482. "app_readme": "<h1>Distribution</h1>\n<p><a href=\"https://github.com/distribution/distribution\">Distribution</a> is a toolkit to pack, ship, store, and deliver container content</p>",
  1483. "categories": [
  1484. "productivity"
  1485. ],
  1486. "description": "Distribution is a toolkit to pack, ship, store, and deliver container content",
  1487. "healthy": true,
  1488. "healthy_error": null,
  1489. "home": "https://github.com/distribution/distribution",
  1490. "location": "/__w/charts/charts/community/distribution",
  1491. "latest_version": "1.2.4",
  1492. "latest_app_version": "2.8.3",
  1493. "latest_human_version": "2.8.3_1.2.4",
  1494. "last_update": "2024-04-15 09:28:51",
  1495. "name": "distribution",
  1496. "recommended": false,
  1497. "title": "Distribution",
  1498. "maintainers": [
  1499. {
  1500. "name": "truenas",
  1501. "url": "https://www.truenas.com/",
  1502. "email": "dev@ixsystems.com"
  1503. }
  1504. ],
  1505. "tags": [
  1506. "registry",
  1507. "container"
  1508. ],
  1509. "screenshots": [],
  1510. "sources": [
  1511. "https://hub.docker.com/_/registry",
  1512. "https://distribution.github.io/distribution/",
  1513. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/distribution",
  1514. "https://github.com/distribution/distribution"
  1515. ],
  1516. "icon_url": "https://media.sys.truenas.net/apps/distribution/icons/icon.svg"
  1517. },
  1518. "firefly-iii": {
  1519. "app_readme": "<h1>Firefly III</h1>\n<p><a href=\"https://www.firefly-iii.org/\">Firefly III</a> is a personal finances manager</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>postgres</code> directories.\nAfterward, the <code>postgres</code> container will run as a <strong>non</strong>-root user (<code>999</code>).\nOn each upgrade, a container will be launched with <strong>root</strong> privileges in order to apply the correct\npermissions to the <code>postgres</code> <strong>backups</strong> directory. Container that performs the backup will run as a <strong>non</strong>-root user (<code>999</code>) afterwards.\nKeep in mind the permissions on the backup directory will be changed to <code>999:999</code> on <strong>every</strong> update.\nBut will only be changed once for the <code>postgres</code> data directories.</p>\n</blockquote>",
  1520. "categories": [
  1521. "productivity"
  1522. ],
  1523. "description": "Firefly III is a personal finances manager",
  1524. "healthy": true,
  1525. "healthy_error": null,
  1526. "home": "https://www.firefly-iii.org/",
  1527. "location": "/__w/charts/charts/community/firefly-iii",
  1528. "latest_version": "1.1.22",
  1529. "latest_app_version": "6.1.13",
  1530. "latest_human_version": "6.1.13_1.1.22",
  1531. "last_update": "2024-04-15 09:28:51",
  1532. "name": "firefly-iii",
  1533. "recommended": false,
  1534. "title": "Firefly III",
  1535. "maintainers": [
  1536. {
  1537. "name": "truenas",
  1538. "url": "https://www.truenas.com/",
  1539. "email": "dev@ixsystems.com"
  1540. }
  1541. ],
  1542. "tags": [
  1543. "finance"
  1544. ],
  1545. "screenshots": [
  1546. "https://media.sys.truenas.net/apps/firefly-iii/screenshots/screenshot1.png",
  1547. "https://media.sys.truenas.net/apps/firefly-iii/screenshots/screenshot2.png",
  1548. "https://media.sys.truenas.net/apps/firefly-iii/screenshots/screenshot3.png",
  1549. "https://media.sys.truenas.net/apps/firefly-iii/screenshots/screenshot4.png"
  1550. ],
  1551. "sources": [
  1552. "https://hub.docker.com/r/fireflyiii/core/",
  1553. "https://github.com/truenas/charts/tree/master/community/firefly-iii",
  1554. "https://github.com/firefly-iii/firefly-iii"
  1555. ],
  1556. "icon_url": "https://media.sys.truenas.net/apps/firefly-iii/icons/icon.png"
  1557. },
  1558. "netbootxyz": {
  1559. "app_readme": "<h1>netboot.xyz</h1>\n<p><a href=\"https://netboot.xyz\">netboot.xyz</a> lets you PXE boot various operating system installers or utilities from a single tool over the network.</p>",
  1560. "categories": [
  1561. "network"
  1562. ],
  1563. "description": "netboot.xyz lets you PXE boot various operating system installers or utilities from a single tool over the network.",
  1564. "healthy": true,
  1565. "healthy_error": null,
  1566. "home": "https://github.com/truenas/charts/tree/master/community/netbootxyz",
  1567. "location": "/__w/charts/charts/community/netbootxyz",
  1568. "latest_version": "1.0.4",
  1569. "latest_app_version": "0.7.1.1",
  1570. "latest_human_version": "0.7.1.1_1.0.4",
  1571. "last_update": "2024-04-15 09:28:51",
  1572. "name": "netbootxyz",
  1573. "recommended": false,
  1574. "title": "netbootxyz",
  1575. "maintainers": [
  1576. {
  1577. "name": "truenas",
  1578. "url": "https://www.truenas.com/",
  1579. "email": "dev@ixsystems.com"
  1580. }
  1581. ],
  1582. "tags": [
  1583. "tftp",
  1584. "pxe",
  1585. "netboot",
  1586. "netboot.xyz"
  1587. ],
  1588. "screenshots": [
  1589. "https://media.sys.truenas.net/apps/netbootxyz/screenshots/screenshot1.jpg"
  1590. ],
  1591. "sources": [
  1592. "https://github.com/truenas/charts/tree/master/community/netbootxyz",
  1593. "https://github.com/netbootxyz/docker-netbootxyz",
  1594. "https://netboot.xyz"
  1595. ],
  1596. "icon_url": "https://media.sys.truenas.net/apps/netbootxyz/icons/icon.svg"
  1597. },
  1598. "freshrss": {
  1599. "app_readme": "<h1>FreshRSS</h1>\n<p><a href=\"https://freshrss.org/\">FreshRSS</a> is a free, self-hostable news aggregator</p>",
  1600. "categories": [
  1601. "productivity"
  1602. ],
  1603. "description": "FreshRSS is a free, self-hostable news aggregator",
  1604. "healthy": true,
  1605. "healthy_error": null,
  1606. "home": "https://freshrss.org/",
  1607. "location": "/__w/charts/charts/community/freshrss",
  1608. "latest_version": "1.1.9",
  1609. "latest_app_version": "1.23.1",
  1610. "latest_human_version": "1.23.1_1.1.9",
  1611. "last_update": "2024-04-15 09:28:51",
  1612. "name": "freshrss",
  1613. "recommended": false,
  1614. "title": "FreshRSS",
  1615. "maintainers": [
  1616. {
  1617. "name": "truenas",
  1618. "url": "https://www.truenas.com/",
  1619. "email": "dev@ixsystems.com"
  1620. }
  1621. ],
  1622. "tags": [
  1623. "rss",
  1624. "news"
  1625. ],
  1626. "screenshots": [
  1627. "https://media.sys.truenas.net/apps/freshrss/screenshots/screenshot1.webp"
  1628. ],
  1629. "sources": [
  1630. "https://github.com/FreshRSS/FreshRSS",
  1631. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/freshrss",
  1632. "https://hub.docker.com/r/freshrss/freshrss"
  1633. ],
  1634. "icon_url": "https://media.sys.truenas.net/apps/freshrss/icons/icon.png"
  1635. },
  1636. "sabnzbd": {
  1637. "app_readme": "<h1>SABnzbd</h1>\n<p><a href=\"https://github.com/Sabnzbd/Sabnzbd\">SABnzbd</a> is an Open Source Binary Newsreader written in Python.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>SABnzbd</code> directories.\nAfterward, the <code>SABnzbd</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  1638. "categories": [
  1639. "media"
  1640. ],
  1641. "description": "SABnzbd is an Open Source Binary Newsreader written in Python.",
  1642. "healthy": true,
  1643. "healthy_error": null,
  1644. "home": "https://sabnzbd.org/",
  1645. "location": "/__w/charts/charts/community/sabnzbd",
  1646. "latest_version": "1.2.7",
  1647. "latest_app_version": "4.2.3",
  1648. "latest_human_version": "4.2.3_1.2.7",
  1649. "last_update": "2024-04-15 09:28:51",
  1650. "name": "sabnzbd",
  1651. "recommended": false,
  1652. "title": "SABnzbd",
  1653. "maintainers": [
  1654. {
  1655. "name": "truenas",
  1656. "url": "https://www.truenas.com/",
  1657. "email": "dev@ixsystems.com"
  1658. }
  1659. ],
  1660. "tags": [
  1661. "usenet",
  1662. "newsreader"
  1663. ],
  1664. "screenshots": [
  1665. "https://media.sys.truenas.net/apps/sabnzbd/screenshots/screenshot1.png",
  1666. "https://media.sys.truenas.net/apps/sabnzbd/screenshots/screenshot2.png",
  1667. "https://media.sys.truenas.net/apps/sabnzbd/screenshots/screenshot3.png"
  1668. ],
  1669. "sources": [
  1670. "https://github.com/onedr0p/containers/tree/main/apps/sabnzbd",
  1671. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/sabnzbd",
  1672. "https://github.com/Sabnzbd/Sabnzbd"
  1673. ],
  1674. "icon_url": "https://media.sys.truenas.net/apps/sabnzbd/icons/icon.svg"
  1675. },
  1676. "mealie": {
  1677. "app_readme": "<h1>Mealie</h1>\n<p><a href=\"https://mealie.io\">Mealie</a> is a self-hosted recipe manager and meal planner</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>postgres</code> directories.\nAfterward, the <code>postgres</code> container will run as a <strong>non</strong>-root user (<code>999</code>).\nOn each upgrade, a container will be launched with <strong>root</strong> privileges in order to apply the correct\npermissions to the <code>postgres</code> <strong>backups</strong> directory. Container that performs the backup will run as a <strong>non</strong>-root user (<code>999</code>) afterwards.\nKeep in mind the permissions on the backup directory will be changed to <code>999:999</code> on <strong>every</strong> update.\nBut will only be changed once for the <code>postgres</code> data directories.</p>\n</blockquote>",
  1678. "categories": [
  1679. "productivity"
  1680. ],
  1681. "description": "Mealie is a self-hosted recipe manager and meal planner",
  1682. "healthy": true,
  1683. "healthy_error": null,
  1684. "home": "https://mealie.io",
  1685. "location": "/__w/charts/charts/community/mealie",
  1686. "latest_version": "1.0.15",
  1687. "latest_app_version": "1.4.0",
  1688. "latest_human_version": "1.4.0_1.0.15",
  1689. "last_update": "2024-04-15 09:28:51",
  1690. "name": "mealie",
  1691. "recommended": false,
  1692. "title": "Mealie",
  1693. "maintainers": [
  1694. {
  1695. "name": "truenas",
  1696. "url": "https://www.truenas.com/",
  1697. "email": "dev@ixsystems.com"
  1698. }
  1699. ],
  1700. "tags": [
  1701. "recipes",
  1702. "meal planner"
  1703. ],
  1704. "screenshots": [
  1705. "https://media.sys.truenas.net/apps/mealie/screenshots/screenshot1.png"
  1706. ],
  1707. "sources": [
  1708. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/mealie",
  1709. "https://github.com/ndom91/briefkasten",
  1710. "https://nightly.mealie.io/"
  1711. ],
  1712. "icon_url": "https://media.sys.truenas.net/apps/mealie/icons/icon.png"
  1713. },
  1714. "organizr": {
  1715. "app_readme": "<h1>Organizr</h1>\n<p><a href=\"https://docs.organizr.app/\">Organizr</a> is a HTPC/Homelab Services Organizer - Written in PHP</p>",
  1716. "categories": [
  1717. "media"
  1718. ],
  1719. "description": "Organizr is a HTPC/Homelab Services Organizer - Written in PHP",
  1720. "healthy": true,
  1721. "healthy_error": null,
  1722. "home": "https://github.com/causefx/Organizr",
  1723. "location": "/__w/charts/charts/community/organizr",
  1724. "latest_version": "1.0.1",
  1725. "latest_app_version": "latest",
  1726. "latest_human_version": "latest_1.0.1",
  1727. "last_update": "2024-04-15 09:28:51",
  1728. "name": "organizr",
  1729. "recommended": false,
  1730. "title": "Organizr",
  1731. "maintainers": [
  1732. {
  1733. "name": "truenas",
  1734. "url": "https://www.truenas.com/",
  1735. "email": "dev@ixsystems.com"
  1736. }
  1737. ],
  1738. "tags": [
  1739. "dashboard",
  1740. "organizr"
  1741. ],
  1742. "screenshots": [
  1743. "https://media.sys.truenas.net/apps/organizr/screenshots/screenshot1.webp",
  1744. "https://media.sys.truenas.net/apps/organizr/screenshots/screenshot2.webp"
  1745. ],
  1746. "sources": [
  1747. "https://hub.docker.com/r/organizr/organizr",
  1748. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/organizr",
  1749. "https://github.com/causefx/Organizr"
  1750. ],
  1751. "icon_url": "https://media.sys.truenas.net/apps/organizr/icons/icon.png"
  1752. },
  1753. "homer": {
  1754. "app_readme": "<h1>Homer</h1>\n<p><a href=\"https://github.com/bastienwirtz/homer\">Homer</a> is a dead simple static HOMepage for your servER to keep your services on hand, from a simple yaml configuration file.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Homer</code> directories.\nAfterward, the <code>Homer</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  1755. "categories": [
  1756. "productivity"
  1757. ],
  1758. "description": "Homer is a dead simple static HOMepage for your servER to keep your services on hand, from a simple yaml configuration file.",
  1759. "healthy": true,
  1760. "healthy_error": null,
  1761. "home": "https://github.com/bastienwirtz/homer",
  1762. "location": "/__w/charts/charts/community/homer",
  1763. "latest_version": "1.2.4",
  1764. "latest_app_version": "23.10.1",
  1765. "latest_human_version": "23.10.1_1.2.4",
  1766. "last_update": "2024-04-15 09:28:51",
  1767. "name": "homer",
  1768. "recommended": false,
  1769. "title": "Homer",
  1770. "maintainers": [
  1771. {
  1772. "name": "truenas",
  1773. "url": "https://www.truenas.com/",
  1774. "email": "dev@ixsystems.com"
  1775. }
  1776. ],
  1777. "tags": [
  1778. "dashboard",
  1779. "homepage"
  1780. ],
  1781. "screenshots": [
  1782. "https://media.sys.truenas.net/apps/homer/screenshots/screenshot1.png"
  1783. ],
  1784. "sources": [
  1785. "https://hub.docker.com/r/b4bz/homer",
  1786. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/homer",
  1787. "https://github.com/bastienwirtz/homer"
  1788. ],
  1789. "icon_url": "https://media.sys.truenas.net/apps/homer/icons/icon.png"
  1790. },
  1791. "invidious": {
  1792. "app_readme": "<h1>Invidious</h1>\n<p><a href=\"https://invidious.io/\">Invidious</a> is an alternative front-end to YouTube.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>postgres</code> directories.\nAfterward, the <code>postgres</code> container will run as a <strong>non</strong>-root user (<code>999</code>).\nOn each upgrade, a container will be launched with <strong>root</strong> privileges in order to apply the correct\npermissions to the <code>postgres</code> <strong>backups</strong> directory. Container that performs the backup will run as a <strong>non</strong>-root user (<code>999</code>) afterwards.\nKeep in mind the permissions on the backup directory will be changed to <code>999:999</code> on <strong>every</strong> update.\nBut will only be changed once for the <code>postgres</code> data directories.</p>\n</blockquote>\n<p>Additional configuration can be specified</p>\n<ul>\n<li>Via <a href=\"https://github.com/iv-org/invidious/pull/1702\">environment variables</a></li>\n<li>By editing the file <code>/config/config.yaml</code> (see <a href=\"https://github.com/iv-org/invidious/blob/master/config/config.example.yml\">example</a>)</li>\n</ul>",
  1793. "categories": [
  1794. "media"
  1795. ],
  1796. "description": "Invidious is an alternative front-end to YouTube",
  1797. "healthy": true,
  1798. "healthy_error": null,
  1799. "home": "https://invidious.io/",
  1800. "location": "/__w/charts/charts/community/invidious",
  1801. "latest_version": "2.0.1",
  1802. "latest_app_version": "latest",
  1803. "latest_human_version": "latest_2.0.1",
  1804. "last_update": "2024-04-15 09:30:16",
  1805. "name": "invidious",
  1806. "recommended": false,
  1807. "title": "Invidious",
  1808. "maintainers": [
  1809. {
  1810. "name": "truenas",
  1811. "url": "https://www.truenas.com/",
  1812. "email": "dev@ixsystems.com"
  1813. }
  1814. ],
  1815. "tags": [
  1816. "youtube"
  1817. ],
  1818. "screenshots": [
  1819. "https://media.sys.truenas.net/apps/invidious/screenshots/screenshot1.png",
  1820. "https://media.sys.truenas.net/apps/invidious/screenshots/screenshot2.png",
  1821. "https://media.sys.truenas.net/apps/invidious/screenshots/screenshot3.png",
  1822. "https://media.sys.truenas.net/apps/invidious/screenshots/screenshot4.png",
  1823. "https://media.sys.truenas.net/apps/invidious/screenshots/screenshot5.png",
  1824. "https://media.sys.truenas.net/apps/invidious/screenshots/screenshot6.png"
  1825. ],
  1826. "sources": [
  1827. "https://invidious.io/",
  1828. "https://github.com/truenas/charts/tree/master/community/invidious",
  1829. "https://quay.io/repository/invidious"
  1830. ],
  1831. "icon_url": "https://media.sys.truenas.net/apps/invidious/icons/icon.svg"
  1832. },
  1833. "metube": {
  1834. "app_readme": "<h1>MeTube</h1>\n<p><a href=\"https://github.com/alexta69/metube\">MeTube</a> is a web GUI for youtube-dl (using the yt-dlp fork) with playlist support.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>MeTube</code> directories.\nAfterward, the <code>MeTube</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  1835. "categories": [
  1836. "media"
  1837. ],
  1838. "description": "MeTube is a web GUI for youtube-dl (using the yt-dlp fork) with playlist support.",
  1839. "healthy": true,
  1840. "healthy_error": null,
  1841. "home": "https://github.com/alexta69/metube",
  1842. "location": "/__w/charts/charts/community/metube",
  1843. "latest_version": "1.2.12",
  1844. "latest_app_version": "2024-04-12",
  1845. "latest_human_version": "2024-04-12_1.2.12",
  1846. "last_update": "2024-04-15 09:28:51",
  1847. "name": "metube",
  1848. "recommended": false,
  1849. "title": "MeTube",
  1850. "maintainers": [
  1851. {
  1852. "name": "truenas",
  1853. "url": "https://www.truenas.com/",
  1854. "email": "dev@ixsystems.com"
  1855. }
  1856. ],
  1857. "tags": [
  1858. "youtube-dl",
  1859. "yt-dlp"
  1860. ],
  1861. "screenshots": [
  1862. "https://media.sys.truenas.net/apps/metube/screenshots/screenshot1.png"
  1863. ],
  1864. "sources": [
  1865. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/metube",
  1866. "https://github.com/alexta69/metube"
  1867. ],
  1868. "icon_url": "https://media.sys.truenas.net/apps/metube/icons/icon.svg"
  1869. },
  1870. "briefkasten": {
  1871. "app_readme": "<h1>Briefkasten</h1>\n<p><a href=\"https://github.com/ndom91/briefkasten\">Briefkasten</a> is a self hosted bookmarking app</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>postgres</code> directories.\nAfterward, the <code>postgres</code> container will run as a <strong>non</strong>-root user (<code>999</code>).\nOn each upgrade, a container will be launched with <strong>root</strong> privileges in order to apply the correct\npermissions to the <code>postgres</code> <strong>backups</strong> directory. Container that performs the backup will run as a <strong>non</strong>-root user (<code>999</code>) afterwards.\nKeep in mind the permissions on the backup directory will be changed to <code>999:999</code> on <strong>every</strong> update.\nBut will only be changed once for the <code>postgres</code> data directories.</p>\n</blockquote>",
  1872. "categories": [
  1873. "productivity"
  1874. ],
  1875. "description": "Briefkasten is a self hosted bookmarking app",
  1876. "healthy": true,
  1877. "healthy_error": null,
  1878. "home": "https://github.com/ndom91/briefkasten",
  1879. "location": "/__w/charts/charts/community/briefkasten",
  1880. "latest_version": "1.2.7",
  1881. "latest_app_version": "latest",
  1882. "latest_human_version": "latest_1.2.7",
  1883. "last_update": "2024-04-15 09:28:51",
  1884. "name": "briefkasten",
  1885. "recommended": false,
  1886. "title": "Briefkasten",
  1887. "maintainers": [
  1888. {
  1889. "name": "truenas",
  1890. "url": "https://www.truenas.com/",
  1891. "email": "dev@ixsystems.com"
  1892. }
  1893. ],
  1894. "tags": [
  1895. "bookmark"
  1896. ],
  1897. "screenshots": [
  1898. "https://media.sys.truenas.net/apps/briefkasten/screenshots/screenshot1.png",
  1899. "https://media.sys.truenas.net/apps/briefkasten/screenshots/screenshot2.png",
  1900. "https://media.sys.truenas.net/apps/briefkasten/screenshots/screenshot3.png",
  1901. "https://media.sys.truenas.net/apps/briefkasten/screenshots/screenshot4.png"
  1902. ],
  1903. "sources": [
  1904. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/briefkasten",
  1905. "https://github.com/ndom91/briefkasten",
  1906. "https://docs.briefkastenhq.com/"
  1907. ],
  1908. "icon_url": "https://media.sys.truenas.net/apps/briefkasten/icons/icon.svg"
  1909. },
  1910. "deluge": {
  1911. "app_readme": "<h1>Deluge</h1>\n<p><a href=\"https://deluge-torrent.org/\">Deluge</a> is a lightweight, Free Software, cross-platform BitTorrent client.</p>",
  1912. "categories": [
  1913. "media"
  1914. ],
  1915. "description": "Deluge is a lightweight, Free Software, cross-platform BitTorrent client.",
  1916. "healthy": true,
  1917. "healthy_error": null,
  1918. "home": "https://deluge-torrent.org",
  1919. "location": "/__w/charts/charts/community/deluge",
  1920. "latest_version": "1.2.6",
  1921. "latest_app_version": "2.1.1",
  1922. "latest_human_version": "2.1.1_1.2.6",
  1923. "last_update": "2024-04-15 09:28:51",
  1924. "name": "deluge",
  1925. "recommended": false,
  1926. "title": "Deluge",
  1927. "maintainers": [
  1928. {
  1929. "name": "truenas",
  1930. "url": "https://www.truenas.com/",
  1931. "email": "dev@ixsystems.com"
  1932. }
  1933. ],
  1934. "tags": [
  1935. "torrent",
  1936. "download"
  1937. ],
  1938. "screenshots": [],
  1939. "sources": [
  1940. "https://hub.docker.com/r/linuxserver/deluge",
  1941. "https://github.com/truenas/charts/tree/master/community/deluge",
  1942. "https://deluge-torrent.org/"
  1943. ],
  1944. "icon_url": "https://media.sys.truenas.net/apps/deluge/icons/icon.png"
  1945. },
  1946. "tautulli": {
  1947. "app_readme": "<h1>Tautulli</h1>\n<p><a href=\"https://tautulli.com/\">Tautulli</a> is a python based web application for monitoring, analytics and notifications for Plex Media Server.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Tautulli</code> directories.\nAfterward, the <code>Tautulli</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  1948. "categories": [
  1949. "media"
  1950. ],
  1951. "description": "Tautulli is a python based web application for monitoring, analytics and notifications for Plex Media Server.",
  1952. "healthy": true,
  1953. "healthy_error": null,
  1954. "home": "https://tautulli.com/",
  1955. "location": "/__w/charts/charts/community/tautulli",
  1956. "latest_version": "1.2.3",
  1957. "latest_app_version": "2.13.4",
  1958. "latest_human_version": "2.13.4_1.2.3",
  1959. "last_update": "2024-04-15 09:28:51",
  1960. "name": "tautulli",
  1961. "recommended": false,
  1962. "title": "Tautulli",
  1963. "maintainers": [
  1964. {
  1965. "name": "truenas",
  1966. "url": "https://www.truenas.com/",
  1967. "email": "dev@ixsystems.com"
  1968. }
  1969. ],
  1970. "tags": [
  1971. "analytics",
  1972. "notifications"
  1973. ],
  1974. "screenshots": [
  1975. "https://media.sys.truenas.net/apps/tautulli/screenshots/screenshot1.png",
  1976. "https://media.sys.truenas.net/apps/tautulli/screenshots/screenshot2.png",
  1977. "https://media.sys.truenas.net/apps/tautulli/screenshots/screenshot3.png",
  1978. "https://media.sys.truenas.net/apps/tautulli/screenshots/screenshot4.png"
  1979. ],
  1980. "sources": [
  1981. "https://github.com/onedr0p/containers/tree/main/apps/tautulli",
  1982. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/tautulli",
  1983. "https://github.com/Tautulli/Tautulli"
  1984. ],
  1985. "icon_url": "https://media.sys.truenas.net/apps/tautulli/icons/icon.png"
  1986. },
  1987. "immich": {
  1988. "app_readme": "<h1>Immich</h1>\n<p><a href=\"https://immich.app\">Immich</a> - Self-hosted backup solution for photos and videos on mobile device</p>",
  1989. "categories": [
  1990. "media"
  1991. ],
  1992. "description": "Immich is a self-hosted photo and video backup solution directly from your mobile phone.",
  1993. "healthy": true,
  1994. "healthy_error": null,
  1995. "home": "https://immich.app",
  1996. "location": "/__w/charts/charts/community/immich",
  1997. "latest_version": "3.0.19",
  1998. "latest_app_version": "1.101.0",
  1999. "latest_human_version": "1.101.0_3.0.19",
  2000. "last_update": "2024-04-15 09:28:51",
  2001. "name": "immich",
  2002. "recommended": false,
  2003. "title": "Immich",
  2004. "maintainers": [
  2005. {
  2006. "name": "truenas",
  2007. "url": "https://www.truenas.com/",
  2008. "email": "dev@ixsystems.com"
  2009. }
  2010. ],
  2011. "tags": [
  2012. "photos",
  2013. "backup"
  2014. ],
  2015. "screenshots": [],
  2016. "sources": [
  2017. "https://immich.app",
  2018. "https://github.com/truenas/charts/tree/master/community/immich",
  2019. "https://github.com/immich-app/immich"
  2020. ],
  2021. "icon_url": "https://media.sys.truenas.net/apps/immich/icons/icon.svg"
  2022. },
  2023. "rsyncd": {
  2024. "app_readme": "<h1>Rsyncd</h1>\n<p><a href=\"https://rsync.samba.org/\">Rsyncd</a> is an open source utility that provides fast incremental file transfer.</p>",
  2025. "categories": [
  2026. "storage"
  2027. ],
  2028. "description": "Rsync is an open source utility that provides fast incremental file transfer.",
  2029. "healthy": true,
  2030. "healthy_error": null,
  2031. "home": "https://github.com/truenas/containers/tree/main/apps/rsyncd",
  2032. "location": "/__w/charts/charts/community/rsyncd",
  2033. "latest_version": "1.0.16",
  2034. "latest_app_version": "1.0.0",
  2035. "latest_human_version": "1.0.0_1.0.16",
  2036. "last_update": "2024-04-15 09:28:51",
  2037. "name": "rsyncd",
  2038. "recommended": false,
  2039. "title": "Rsync Daemon",
  2040. "maintainers": [
  2041. {
  2042. "name": "truenas",
  2043. "url": "https://www.truenas.com/",
  2044. "email": "dev@ixsystems.com"
  2045. }
  2046. ],
  2047. "tags": [
  2048. "sync",
  2049. "file transfer"
  2050. ],
  2051. "screenshots": [],
  2052. "sources": [
  2053. "https://github.com/truenas/containers/tree/main/apps/rsyncd",
  2054. "https://github.com/truenas/charts/tree/master/community/rsyncd",
  2055. "https://hub.docker.com/r/ixsystems/rsyncd"
  2056. ],
  2057. "icon_url": "https://media.sys.truenas.net/apps/rsyncd/icons/icon.png"
  2058. },
  2059. "gitea": {
  2060. "app_readme": "<h1>Gitea</h1>\n<p><a href=\"https://gitea.io/en-us\">Gitea</a> - Git with a cup of tea</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>postgres</code> directories.\nAfterwards <code>postgres</code> will run afterwards as a <strong>non</strong>-root user (<code>999</code>).\nOn each upgrade, a container will be launched with <strong>root</strong> privileges in order to apply the correct\npermissions to the <code>postgres</code> <strong>backups</strong> directory. Container that performs the backup will run as a <strong>non</strong>-root user (<code>999</code>) afterwards.\nKeep in mind the permissions on the backup directory will be changed to <code>999:999</code> on <strong>every</strong> update.\nBut will only be changed once for the <code>postgres</code> data directories.</p>\n</blockquote>\n<p>On initial startup a setup wizard will be launched with settings for <code>database</code>, <code>ports</code>, <code>path</code>, and <code>domain</code> prefilled.\nKeep them as they are, fill anything you want in the optional settings section and click on <code>Install Gitea</code>.</p>",
  2061. "categories": [
  2062. "productivity"
  2063. ],
  2064. "description": "Gitea - Git with a cup of tea",
  2065. "healthy": true,
  2066. "healthy_error": null,
  2067. "home": "https://gitea.io/en-us",
  2068. "location": "/__w/charts/charts/community/gitea",
  2069. "latest_version": "1.1.18",
  2070. "latest_app_version": "1.21.10",
  2071. "latest_human_version": "1.21.10_1.1.18",
  2072. "last_update": "2024-04-15 09:28:51",
  2073. "name": "gitea",
  2074. "recommended": false,
  2075. "title": "Gitea",
  2076. "maintainers": [
  2077. {
  2078. "name": "truenas",
  2079. "url": "https://www.truenas.com/",
  2080. "email": "dev@ixsystems.com"
  2081. }
  2082. ],
  2083. "tags": [
  2084. "git"
  2085. ],
  2086. "screenshots": [
  2087. "https://media.sys.truenas.net/apps/gitea/screenshots/screenshot1.png",
  2088. "https://media.sys.truenas.net/apps/gitea/screenshots/screenshot2.png",
  2089. "https://media.sys.truenas.net/apps/gitea/screenshots/screenshot3.png",
  2090. "https://media.sys.truenas.net/apps/gitea/screenshots/screenshot4.png"
  2091. ],
  2092. "sources": [
  2093. "https://gitea.io/en-us",
  2094. "https://github.com/truenas/charts/tree/master/community/gitea",
  2095. "https://docs.gitea.io/en-us/install-with-docker-rootless"
  2096. ],
  2097. "icon_url": "https://media.sys.truenas.net/apps/gitea/icons/icon.svg"
  2098. },
  2099. "planka": {
  2100. "app_readme": "<h1>Planka</h1>\n<p><a href=\"https://github.com/plankanban/planka\">Planka</a> is an Elegant open source project tracking</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Planka</code> directories.\nAfterward, the <code>Planka</code> container will run as a <strong>non</strong>-root user (<code>1000</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  2101. "categories": [
  2102. "productivity"
  2103. ],
  2104. "description": "Planka is an Elegant open source project tracking",
  2105. "healthy": true,
  2106. "healthy_error": null,
  2107. "home": "https://github.com/plankanban/planka",
  2108. "location": "/__w/charts/charts/community/planka",
  2109. "latest_version": "1.2.19",
  2110. "latest_app_version": "1.16.4",
  2111. "latest_human_version": "1.16.4_1.2.19",
  2112. "last_update": "2024-04-15 09:28:51",
  2113. "name": "planka",
  2114. "recommended": false,
  2115. "title": "Planka",
  2116. "maintainers": [
  2117. {
  2118. "name": "truenas",
  2119. "url": "https://www.truenas.com/",
  2120. "email": "dev@ixsystems.com"
  2121. }
  2122. ],
  2123. "tags": [
  2124. "kanban",
  2125. "project",
  2126. "task"
  2127. ],
  2128. "screenshots": [
  2129. "https://media.sys.truenas.net/apps/planka/screenshots/screenshot1.png"
  2130. ],
  2131. "sources": [
  2132. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/planka",
  2133. "https://github.com/plankanban/planka"
  2134. ],
  2135. "icon_url": "https://media.sys.truenas.net/apps/planka/icons/icon.png"
  2136. },
  2137. "qbittorrent": {
  2138. "app_readme": "<h1>qBittorrent</h1>\n<p>The <a href=\"https://www.qbittorrent.org/\">qBittorrent</a> project aims to provide an open-source software alternative to \u00b5Torrent.</p>",
  2139. "categories": [
  2140. "media"
  2141. ],
  2142. "description": "The qBittorrent project aims to provide an open-source software alternative to \u00b5Torrent.",
  2143. "healthy": true,
  2144. "healthy_error": null,
  2145. "home": "https://www.qbittorrent.org/",
  2146. "location": "/__w/charts/charts/community/qbittorrent",
  2147. "latest_version": "1.2.11",
  2148. "latest_app_version": "4.6.4",
  2149. "latest_human_version": "4.6.4_1.2.11",
  2150. "last_update": "2024-04-15 09:28:51",
  2151. "name": "qbittorrent",
  2152. "recommended": false,
  2153. "title": "qBittorrent",
  2154. "maintainers": [
  2155. {
  2156. "name": "truenas",
  2157. "url": "https://www.truenas.com/",
  2158. "email": "dev@ixsystems.com"
  2159. }
  2160. ],
  2161. "tags": [
  2162. "torrent",
  2163. "download"
  2164. ],
  2165. "screenshots": [
  2166. "https://media.sys.truenas.net/apps/qbittorrent/screenshots/screenshot1.png"
  2167. ],
  2168. "sources": [
  2169. "https://github.com/onedr0p/containers/tree/main/apps/qbittorrent",
  2170. "https://github.com/truenas/charts/tree/master/community/qbittorrent",
  2171. "https://www.qbittorrent.org/"
  2172. ],
  2173. "icon_url": "https://media.sys.truenas.net/apps/qbittorrent/icons/icon.png"
  2174. },
  2175. "unifi-controller": {
  2176. "app_readme": "<h1>Unifi Controller</h1>\n<p><a href=\"https://github.com/goofball222/unifi\">Unifi Controller</a> is a network management controller for Unifi Equipment.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Unifi Controller</code> directories.\nAfterward, the <code>Unifi Controller</code> container will run as a <strong>non</strong>-root user (<code>999</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  2177. "categories": [
  2178. "network"
  2179. ],
  2180. "description": "Unifi Controller is a network management controller for Unifi Equipment.",
  2181. "healthy": true,
  2182. "healthy_error": null,
  2183. "home": "https://github.com/goofball222/unifi",
  2184. "location": "/__w/charts/charts/community/unifi-controller",
  2185. "latest_version": "1.3.7",
  2186. "latest_app_version": "8.1.113",
  2187. "latest_human_version": "8.1.113_1.3.7",
  2188. "last_update": "2024-04-15 09:28:51",
  2189. "name": "unifi-controller",
  2190. "recommended": false,
  2191. "title": "Unifi Controller",
  2192. "maintainers": [
  2193. {
  2194. "name": "truenas",
  2195. "url": "https://www.truenas.com/",
  2196. "email": "dev@ixsystems.com"
  2197. }
  2198. ],
  2199. "tags": [
  2200. "controller",
  2201. "unifi"
  2202. ],
  2203. "screenshots": [],
  2204. "sources": [
  2205. "https://github.com/goofball222/unifi",
  2206. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/unifi-controller",
  2207. "https://hub.docker.com/r/goofball222/unifi"
  2208. ],
  2209. "icon_url": "https://media.sys.truenas.net/apps/unifi-controller/icons/icon.png"
  2210. },
  2211. "homarr": {
  2212. "app_readme": "<h1>Homarr</h1>\n<p><a href=\"https://github.com/ajnart/homarr\">Homarr</a> is a sleek, modern dashboard that puts all of your apps and services at your fingertips.</p>\n<h2>Upgrade to 2.0.0</h2>\n<p>Direct upgrade to 2.x.x is not possible, due to major upstream changes.\nThe changes require new storage configuration that cannot be assumed, nor configured\nduring the upgrade. Please re-install in order to configure this new storage.</p>",
  2213. "categories": [
  2214. "productivity"
  2215. ],
  2216. "description": "Homarr is a sleek, modern dashboard that puts all of your apps and services at your fingertips.",
  2217. "healthy": true,
  2218. "healthy_error": null,
  2219. "home": "https://homarr.dev/",
  2220. "location": "/__w/charts/charts/community/homarr",
  2221. "latest_version": "2.0.13",
  2222. "latest_app_version": "0.15.2",
  2223. "latest_human_version": "0.15.2_2.0.13",
  2224. "last_update": "2024-04-15 09:28:51",
  2225. "name": "homarr",
  2226. "recommended": false,
  2227. "title": "Homarr",
  2228. "maintainers": [
  2229. {
  2230. "name": "truenas",
  2231. "url": "https://www.truenas.com/",
  2232. "email": "dev@ixsystems.com"
  2233. }
  2234. ],
  2235. "tags": [
  2236. "dashboard"
  2237. ],
  2238. "screenshots": [
  2239. "https://media.sys.truenas.net/apps/homarr/screenshots/screenshot1.png",
  2240. "https://media.sys.truenas.net/apps/homarr/screenshots/screenshot2.png",
  2241. "https://media.sys.truenas.net/apps/homarr/screenshots/screenshot3.png"
  2242. ],
  2243. "sources": [
  2244. "https://homarr.dev/",
  2245. "https://github.com/truenas/charts/tree/master/community/homarr",
  2246. "https://github.com/ajnart/homarr"
  2247. ],
  2248. "icon_url": "https://media.sys.truenas.net/apps/homarr/icons/icon.svg"
  2249. },
  2250. "pgadmin": {
  2251. "app_readme": "<h1>pgAdmin</h1>\n<p><a href=\"https://github.com/pgadmin-org/pgadmin4\">pgAdmin</a> is the most popular and feature rich Open Source administration and development platform for PostgreSQL</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>pgAdmin</code> directories.\nAfterward, the <code>pgAdmin</code> container will run as a <strong>non</strong>-root user (<code>5050</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  2252. "categories": [
  2253. "productivity"
  2254. ],
  2255. "description": "pgAdmin is the most popular and feature rich Open Source administration and development platform for PostgreSQL",
  2256. "healthy": true,
  2257. "healthy_error": null,
  2258. "home": "https://www.pgadmin.org/",
  2259. "location": "/__w/charts/charts/community/pgadmin",
  2260. "latest_version": "1.2.7",
  2261. "latest_app_version": "8.5",
  2262. "latest_human_version": "8.5_1.2.7",
  2263. "last_update": "2024-04-15 09:28:51",
  2264. "name": "pgadmin",
  2265. "recommended": false,
  2266. "title": "pgAdmin",
  2267. "maintainers": [
  2268. {
  2269. "name": "truenas",
  2270. "url": "https://www.truenas.com/",
  2271. "email": "dev@ixsystems.com"
  2272. }
  2273. ],
  2274. "tags": [
  2275. "database",
  2276. "management"
  2277. ],
  2278. "screenshots": [
  2279. "https://media.sys.truenas.net/apps/pgadmin/screenshots/screenshot1.png",
  2280. "https://media.sys.truenas.net/apps/pgadmin/screenshots/screenshot2.png",
  2281. "https://media.sys.truenas.net/apps/pgadmin/screenshots/screenshot3.png"
  2282. ],
  2283. "sources": [
  2284. "https://hub.docker.com/r/dpage/pgadmin4",
  2285. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/pgadmin",
  2286. "https://www.pgadmin.org/"
  2287. ],
  2288. "icon_url": "https://media.sys.truenas.net/apps/pgadmin/icons/icon.png"
  2289. },
  2290. "vikunja": {
  2291. "app_readme": "<h1>Vikunja</h1>\n<p><a href=\"https://vikunja.io\">Vikunja</a> is an open-source, self-hostable to-do app.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>postgres</code> directories.\nAfterward, the <code>postgres</code> container will run as a <strong>non</strong>-root user (<code>999</code>).\nOn each upgrade, a container will be launched with <strong>root</strong> privileges in order to apply the correct\npermissions to the <code>postgres</code> <strong>backups</strong> directory. Container that performs the backup will run as a <strong>non</strong>-root user (<code>999</code>) afterwards.\nKeep in mind the permissions on the backup directory will be changed to <code>999:999</code> on <strong>every</strong> update.\nBut will only be changed once for the <code>postgres</code> data directories.</p>\n</blockquote>",
  2292. "categories": [
  2293. "productivity"
  2294. ],
  2295. "description": "Vikunja is an open-source, self-hostable to-do app.",
  2296. "healthy": true,
  2297. "healthy_error": null,
  2298. "home": "https://vikunja.io/",
  2299. "location": "/__w/charts/charts/community/vikunja",
  2300. "latest_version": "1.0.11",
  2301. "latest_app_version": "0.22.1",
  2302. "latest_human_version": "0.22.1_1.0.11",
  2303. "last_update": "2024-04-15 09:28:51",
  2304. "name": "vikunja",
  2305. "recommended": false,
  2306. "title": "Vikunja",
  2307. "maintainers": [
  2308. {
  2309. "name": "truenas",
  2310. "url": "https://www.truenas.com/",
  2311. "email": "dev@ixsystems.com"
  2312. }
  2313. ],
  2314. "tags": [
  2315. "todo"
  2316. ],
  2317. "screenshots": [
  2318. "https://media.sys.truenas.net/apps/vikunja/screenshots/screenshot1.webp",
  2319. "https://media.sys.truenas.net/apps/vikunja/screenshots/screenshot2.webp",
  2320. "https://media.sys.truenas.net/apps/vikunja/screenshots/screenshot3.webp",
  2321. "https://media.sys.truenas.net/apps/vikunja/screenshots/screenshot4.webp",
  2322. "https://media.sys.truenas.net/apps/vikunja/screenshots/screenshot5.webp",
  2323. "https://media.sys.truenas.net/apps/vikunja/screenshots/screenshot6.webp",
  2324. "https://media.sys.truenas.net/apps/vikunja/screenshots/screenshot7.webp",
  2325. "https://media.sys.truenas.net/apps/vikunja/screenshots/screenshot8.webp",
  2326. "https://media.sys.truenas.net/apps/vikunja/screenshots/screenshot9.webp"
  2327. ],
  2328. "sources": [
  2329. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/vikunja",
  2330. "https://vikunja.io/"
  2331. ],
  2332. "icon_url": "https://media.sys.truenas.net/apps/vikunja/icons/icon.png"
  2333. },
  2334. "overseerr": {
  2335. "app_readme": "<h1>Overseerr</h1>\n<p><a href=\"https://github.com/sct/overseerr\">Overseerr</a> is a free and open source software application for managing requests for your media library. It integrates with your existing services, such as Sonarr, Radarr, and Plex!</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Overseerr</code> directories.\nAfterward, the <code>Overseerr</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  2336. "categories": [
  2337. "media"
  2338. ],
  2339. "description": "Overseerr is a free and open source software application for managing requests for your media library.",
  2340. "healthy": true,
  2341. "healthy_error": null,
  2342. "home": "https://github.com/sct/overseerr",
  2343. "location": "/__w/charts/charts/community/overseerr",
  2344. "latest_version": "1.0.25",
  2345. "latest_app_version": "1.33.2",
  2346. "latest_human_version": "1.33.2_1.0.25",
  2347. "last_update": "2024-04-15 09:28:51",
  2348. "name": "overseerr",
  2349. "recommended": false,
  2350. "title": "Overseerr",
  2351. "maintainers": [
  2352. {
  2353. "name": "truenas",
  2354. "url": "https://www.truenas.com/",
  2355. "email": "dev@ixsystems.com"
  2356. }
  2357. ],
  2358. "tags": [
  2359. "tv",
  2360. "movies",
  2361. "requests",
  2362. "series"
  2363. ],
  2364. "screenshots": [
  2365. "https://media.sys.truenas.net/apps/overseerr/screenshots/screenshot1.png"
  2366. ],
  2367. "sources": [
  2368. "https://hub.docker.com/r/sctx/overseerr",
  2369. "https://github.com/truenas/charts/tree/master/community/overseer",
  2370. "https://github.com/sct/overseerr"
  2371. ],
  2372. "icon_url": "https://media.sys.truenas.net/apps/overseerr/icons/icon.svg"
  2373. },
  2374. "jellyseerr": {
  2375. "app_readme": "<h1>Jellyseerr</h1>\n<p><a href=\"https://github.com/Fallenbagel/jellyseerr\">Jellyseerr</a> is a free and open source software application for managing requests for your media library.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Jellyseerr</code> directories.\nAfterward, the <code>Jellyseerr</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  2376. "categories": [
  2377. "media"
  2378. ],
  2379. "description": "Jellyseerr is a free and open source software application for managing requests for your media library.",
  2380. "healthy": true,
  2381. "healthy_error": null,
  2382. "home": "https://github.com/Fallenbagel/jellyseerr",
  2383. "location": "/__w/charts/charts/community/jellyseerr",
  2384. "latest_version": "1.0.19",
  2385. "latest_app_version": "1.7.0",
  2386. "latest_human_version": "1.7.0_1.0.19",
  2387. "last_update": "2024-04-15 09:28:51",
  2388. "name": "jellyseerr",
  2389. "recommended": false,
  2390. "title": "Jellyseerr",
  2391. "maintainers": [
  2392. {
  2393. "name": "truenas",
  2394. "url": "https://www.truenas.com/",
  2395. "email": "dev@ixsystems.com"
  2396. }
  2397. ],
  2398. "tags": [
  2399. "tv",
  2400. "movies",
  2401. "requests",
  2402. "series"
  2403. ],
  2404. "screenshots": [
  2405. "https://media.sys.truenas.net/apps/jellyseerr/screenshots/screenshot1.png"
  2406. ],
  2407. "sources": [
  2408. "https://github.com/Fallenbagel/jellyseerr",
  2409. "https://github.com/truenas/charts/tree/master/community/jellyseerr",
  2410. "https://hub.docker.com/r/fallenbagel/jellyseerr"
  2411. ],
  2412. "icon_url": "https://media.sys.truenas.net/apps/jellyseerr/icons/icon.svg"
  2413. },
  2414. "terraria": {
  2415. "app_readme": "<h1>Terraria</h1>\n<p><a href=\"https://terraria.org/\">Terraria</a> is a land of adventure! A land of mystery! A land that's yours to shape, defend, and enjoy.</p>\n<p>This applies only for the <code>TShock</code> image.\nOn the first run, you have to check the logs to get the server token. You will find something like this:</p>\n<p><code>text\nLogin before join enabled. Users may be prompted for an account specific password instead of a server password on connect.\nLogin using UUID enabled. Users automatically login via UUID.\nA malicious server can easily steal a user's UUID. You may consider turning this option off if you run a public server.\nTShock Notice: setup-code.txt is still present, and the code located in that file will be used.\nTo setup the server, join the game and type /setup 424041\nThis token will display until disabled by verification. (/setup)</code></p>\n<p>Join the server and run <code>/setup &lt;token&gt;</code></p>",
  2416. "categories": [
  2417. "games"
  2418. ],
  2419. "description": "Terraria is a land of adventure! A land of mystery! A land that's yours to shape, defend, and enjoy.",
  2420. "healthy": true,
  2421. "healthy_error": null,
  2422. "home": "https://terraria.org/",
  2423. "location": "/__w/charts/charts/community/terraria",
  2424. "latest_version": "1.0.21",
  2425. "latest_app_version": "1.4.4.9",
  2426. "latest_human_version": "1.4.4.9_1.0.21",
  2427. "last_update": "2024-04-15 09:28:51",
  2428. "name": "terraria",
  2429. "recommended": false,
  2430. "title": "Terraria",
  2431. "maintainers": [
  2432. {
  2433. "name": "truenas",
  2434. "url": "https://www.truenas.com/",
  2435. "email": "dev@ixsystems.com"
  2436. }
  2437. ],
  2438. "tags": [
  2439. "world",
  2440. "building",
  2441. "adventure"
  2442. ],
  2443. "screenshots": [],
  2444. "sources": [
  2445. "https://terraria.org/",
  2446. "https://github.com/truenas/charts/tree/master/community/terraria",
  2447. "https://github.com/ryansheehan/terraria"
  2448. ],
  2449. "icon_url": "https://media.sys.truenas.net/apps/terraria/icons/icon.png"
  2450. },
  2451. "clamav": {
  2452. "app_readme": "<h1>ClamAV</h1>\n<p><a href=\"https://www.clamav.net/\">ClamAV</a> - ClamAV\u00ae is an open-source antivirus engine for detecting trojans, viruses, malware &amp; other malicious threats.</p>\n<ul>\n<li>App runs as <code>root</code> user</li>\n</ul>",
  2453. "categories": [
  2454. "security"
  2455. ],
  2456. "description": "ClamAV is an open source (GPLv2) anti-virus toolkit.",
  2457. "healthy": true,
  2458. "healthy_error": null,
  2459. "home": "https://www.clamav.net/",
  2460. "location": "/__w/charts/charts/community/clamav",
  2461. "latest_version": "1.0.21",
  2462. "latest_app_version": "1.0.1",
  2463. "latest_human_version": "1.0.1_1.0.21",
  2464. "last_update": "2024-04-15 09:28:51",
  2465. "name": "clamav",
  2466. "recommended": false,
  2467. "title": "Clam AV",
  2468. "maintainers": [
  2469. {
  2470. "name": "truenas",
  2471. "url": "https://www.truenas.com/",
  2472. "email": "dev@ixsystems.com"
  2473. }
  2474. ],
  2475. "tags": [
  2476. "anti-virus"
  2477. ],
  2478. "screenshots": [],
  2479. "sources": [
  2480. "https://docs.clamav.net/",
  2481. "https://github.com/truenas/charts/tree/master/community/clamav",
  2482. "https://www.clamav.net/"
  2483. ],
  2484. "icon_url": "https://media.sys.truenas.net/apps/clamav/icons/icon.png"
  2485. },
  2486. "omada-controller": {
  2487. "app_readme": "<h1>Omada Controller</h1>\n<p><a href=\"https://github.com/mbentley/docker-omada-controller\">Omada Controller</a> is a network management controller for Omada (TP-Link) Equipment.</p>",
  2488. "categories": [
  2489. "network"
  2490. ],
  2491. "description": "Omada Controller (TP-Link) is a network management controller for TP-Link Omada Equipment.",
  2492. "healthy": true,
  2493. "healthy_error": null,
  2494. "home": "https://github.com/mbentley/docker-omada-controller",
  2495. "location": "/__w/charts/charts/community/omada-controller",
  2496. "latest_version": "1.2.3",
  2497. "latest_app_version": "5.13",
  2498. "latest_human_version": "5.13_1.2.3",
  2499. "last_update": "2024-04-15 09:28:51",
  2500. "name": "omada-controller",
  2501. "recommended": false,
  2502. "title": "Omada Controller",
  2503. "maintainers": [
  2504. {
  2505. "name": "truenas",
  2506. "url": "https://www.truenas.com/",
  2507. "email": "dev@ixsystems.com"
  2508. }
  2509. ],
  2510. "tags": [
  2511. "controller",
  2512. "omada"
  2513. ],
  2514. "screenshots": [],
  2515. "sources": [
  2516. "https://github.com/mbentley/docker-omada-controller",
  2517. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/omada-controller",
  2518. "https://hub.docker.com/r/mbentley/omada-controller"
  2519. ],
  2520. "icon_url": "https://media.sys.truenas.net/apps/omada-controller/icons/icon.svg"
  2521. },
  2522. "vaultwarden": {
  2523. "app_readme": "<h1>Vaultwarden</h1>\n<p><a href=\"https://github.com/dani-garcia/vaultwarden\">Vaultwarden</a> Alternative implementation of the <code>Bitwarden</code> server API written in Rust and compatible with upstream Bitwarden clients</p>\n<blockquote>\n<p>During the installation process, a container will be launched with <strong>root</strong> privileges. This is required\nin order to apply the correct permissions to the <code>Vaultwarden</code> data directory. Afterward, the <code>Vaultwarden</code> container\nwill run as a <strong>non</strong>-root user (default <code>568</code>).\nSame applies to the <code>postgres</code> container. This will run afterwards as a <strong>non</strong>-root user (<code>999</code>).\nOn each upgrade, a container will be launched with <strong>root</strong> privileges in order to apply the correct\npermissions to the <code>postgres</code> <strong>backups</strong> directory. Container that performs the backup will run as a <strong>non</strong>-root user (<code>999</code>) afterwards.\nKeep in mind the permissions on the backup directory will be changed to <code>999:999</code> on <strong>every</strong> update.\nBut will only be changed once for the <code>Vaultwarden</code> and <code>postgres</code> data directories.</p>\n</blockquote>\n<p>While the option to use <code>Rocket</code> for TLS is there, it is not\n<a href=\"https://github.com/dani-garcia/vaultwarden/wiki/Enabling-HTTPS#via-rocket\">recommended</a>.\nInstead, use a reverse proxy to handle TLS termination.</p>\n<p>Using <code>HTTPS</code> is <strong>required</strong> for the most of the features to work (correctly).</p>",
  2524. "categories": [
  2525. "security"
  2526. ],
  2527. "description": "Alternative implementation of the Bitwarden server API written in Rust and compatible with upstream Bitwarden clients.",
  2528. "healthy": true,
  2529. "healthy_error": null,
  2530. "home": "https://github.com/dani-garcia/vaultwarden",
  2531. "location": "/__w/charts/charts/community/vaultwarden",
  2532. "latest_version": "1.1.12",
  2533. "latest_app_version": "1.30.5",
  2534. "latest_human_version": "1.30.5_1.1.12",
  2535. "last_update": "2024-04-15 09:28:51",
  2536. "name": "vaultwarden",
  2537. "recommended": false,
  2538. "title": "Vaultwarden",
  2539. "maintainers": [
  2540. {
  2541. "name": "truenas",
  2542. "url": "https://www.truenas.com/",
  2543. "email": "dev@ixsystems.com"
  2544. }
  2545. ],
  2546. "tags": [
  2547. "password",
  2548. "manager"
  2549. ],
  2550. "screenshots": [
  2551. "https://media.sys.truenas.net/apps/vaultwarden/screenshots/screenshot1.png"
  2552. ],
  2553. "sources": [
  2554. "https://github.com/dani-garcia/vaultwarden",
  2555. "https://github.com/truenas/charts/tree/master/community/vaultwarden"
  2556. ],
  2557. "icon_url": "https://media.sys.truenas.net/apps/vaultwarden/icons/icon.png"
  2558. },
  2559. "kavita": {
  2560. "app_readme": "<h1>Kavita</h1>\n<p><a href=\"https://www.kavitareader.com\">Kavita</a> is a fast, feature rich, cross platform reading server.</p>",
  2561. "categories": [
  2562. "media"
  2563. ],
  2564. "description": "Kavita is a fast, feature rich, cross platform reading server.",
  2565. "healthy": true,
  2566. "healthy_error": null,
  2567. "home": "https://www.kavitareader.com/",
  2568. "location": "/__w/charts/charts/community/kavita",
  2569. "latest_version": "1.2.8",
  2570. "latest_app_version": "0.8.0",
  2571. "latest_human_version": "0.8.0_1.2.8",
  2572. "last_update": "2024-04-15 09:28:51",
  2573. "name": "kavita",
  2574. "recommended": false,
  2575. "title": "Kavita",
  2576. "maintainers": [
  2577. {
  2578. "name": "truenas",
  2579. "url": "https://www.truenas.com/",
  2580. "email": "dev@ixsystems.com"
  2581. }
  2582. ],
  2583. "tags": [
  2584. "ebook",
  2585. "manga"
  2586. ],
  2587. "screenshots": [
  2588. "https://media.sys.truenas.net/apps/kavita/screenshots/screenshot1.png",
  2589. "https://media.sys.truenas.net/apps/kavita/screenshots/screenshot2.png",
  2590. "https://media.sys.truenas.net/apps/kavita/screenshots/screenshot3.png",
  2591. "https://media.sys.truenas.net/apps/kavita/screenshots/screenshot4.png",
  2592. "https://media.sys.truenas.net/apps/kavita/screenshots/screenshot5.png"
  2593. ],
  2594. "sources": [
  2595. "https://github.com/Kareadita/Kavita",
  2596. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/kavita",
  2597. "https://www.kavitareader.com"
  2598. ],
  2599. "icon_url": "https://media.sys.truenas.net/apps/kavita/icons/icon.png"
  2600. },
  2601. "joplin": {
  2602. "app_readme": "<h1>Joplin</h1>\n<p><a href=\"https://joplinapp.org\">Joplin</a> is an open source note-taking app. Capture your thoughts and securely access them from any device</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>postgres</code> directories.\nAfterward, the <code>postgres</code> container will run as a <strong>non</strong>-root user (<code>999</code>).\nOn each upgrade, a container will be launched with <strong>root</strong> privileges in order to apply the correct\npermissions to the <code>postgres</code> <strong>backups</strong> directory. Container that performs the backup will run as a <strong>non</strong>-root user (<code>999</code>) afterwards.\nKeep in mind the permissions on the backup directory will be changed to <code>999:999</code> on <strong>every</strong> update.\nBut will only be changed once for the <code>postgres</code> data directories.</p>\n</blockquote>",
  2603. "categories": [
  2604. "productivity"
  2605. ],
  2606. "description": "Joplin is an open source note-taking app. Capture your thoughts and securely access them from any device",
  2607. "healthy": true,
  2608. "healthy_error": null,
  2609. "home": "https://joplinapp.org/",
  2610. "location": "/__w/charts/charts/community/joplin",
  2611. "latest_version": "1.1.11",
  2612. "latest_app_version": "2.14.2",
  2613. "latest_human_version": "2.14.2_1.1.11",
  2614. "last_update": "2024-04-15 09:28:51",
  2615. "name": "joplin",
  2616. "recommended": false,
  2617. "title": "Joplin",
  2618. "maintainers": [
  2619. {
  2620. "name": "truenas",
  2621. "url": "https://www.truenas.com/",
  2622. "email": "dev@ixsystems.com"
  2623. }
  2624. ],
  2625. "tags": [
  2626. "notes"
  2627. ],
  2628. "screenshots": [
  2629. "https://media.sys.truenas.net/apps/joplin/screenshots/screenshot1.png",
  2630. "https://media.sys.truenas.net/apps/joplin/screenshots/screenshot2.png",
  2631. "https://media.sys.truenas.net/apps/joplin/screenshots/screenshot3.png"
  2632. ],
  2633. "sources": [
  2634. "https://github.com/laurent22/joplin",
  2635. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/joplin",
  2636. "https://hub.docker.com/r/joplin/server/"
  2637. ],
  2638. "icon_url": "https://media.sys.truenas.net/apps/joplin/icons/icon.png"
  2639. },
  2640. "filebrowser": {
  2641. "app_readme": "<h1>Filebrowser</h1>\n<p><a href=\"https://filebrowser.org\">Filebrowser</a> provides a file managing interface within a specified directory and it can be used to upload, delete, preview, rename and edit your files.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Filebrowser</code> directories.\nAfterward, the <code>Filebrowser</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>\n<p>You can configure further the settings by using Environment Variables.\nSee <a href=\"https://filebrowser.org/cli/filebrowser\">Filebrowser Documentation</a> for more information.\nUse the format <code>FB_OPTION_NAME</code> where the option name is the name of the option you want to set.</p>\n<p>You can also edit the configuration file <code>/config/filebrowser.json</code>.</p>\n<p>Note that the following options are already set and will always take precedence\nover the environment variables and the configuration file:</p>\n<ul>\n<li><code>FB_ROOT</code>/<code>--root</code> is set to <code>/data</code> (Any additional volume mounted will be under this directory)</li>\n<li><code>FB_PORT</code>/<code>--port</code> is set to <code>30044</code> (Or the port you configured in the installation wizard)</li>\n<li><code>FB_ADDRESS</code>/<code>--address</code> is set to <code>0.0.0.0</code> (It will listen on all interfaces <strong>inside</strong> the container)</li>\n<li><code>FB_DATABASE</code>/<code>--database</code> is set to <code>/config/filebrowser.db</code></li>\n<li><code>FB_CONFIG</code>/<code>--config</code> is set to <code>/config/filebrowser.json</code></li>\n</ul>\n<p>Also when a certificate is selected</p>\n<ul>\n<li><code>FB_CERT</code>/<code>--cert</code> is set to <code>/config/certs/tls.crt</code></li>\n<li><code>FB_KEY</code>/<code>--key</code> is set to <code>/config/certs/tls.key</code></li>\n</ul>",
  2642. "categories": [
  2643. "storage"
  2644. ],
  2645. "description": "File Browser provides a file managing interface within a specified directory and it can be used to upload, delete, preview, rename and edit your files.",
  2646. "healthy": true,
  2647. "healthy_error": null,
  2648. "home": "https://filebrowser.org",
  2649. "location": "/__w/charts/charts/community/filebrowser",
  2650. "latest_version": "1.2.7",
  2651. "latest_app_version": "2.28.0",
  2652. "latest_human_version": "2.28.0_1.2.7",
  2653. "last_update": "2024-04-15 09:28:51",
  2654. "name": "filebrowser",
  2655. "recommended": false,
  2656. "title": "File Browser",
  2657. "maintainers": [
  2658. {
  2659. "name": "truenas",
  2660. "url": "https://www.truenas.com/",
  2661. "email": "dev@ixsystems.com"
  2662. }
  2663. ],
  2664. "tags": [
  2665. "files",
  2666. "browser"
  2667. ],
  2668. "screenshots": [
  2669. "https://media.sys.truenas.net/apps/filebrowser/screenshots/screenshot1.png",
  2670. "https://media.sys.truenas.net/apps/filebrowser/screenshots/screenshot2.png",
  2671. "https://media.sys.truenas.net/apps/filebrowser/screenshots/screenshot3.png"
  2672. ],
  2673. "sources": [
  2674. "https://github.com/filebrowser/filebrowser",
  2675. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/filebrowser",
  2676. "https://hub.docker.com/r/filebrowser/filebrowser"
  2677. ],
  2678. "icon_url": "https://media.sys.truenas.net/apps/filebrowser/icons/icon.png"
  2679. },
  2680. "rust-desk": {
  2681. "app_readme": "<h1>Rust Desk</h1>\n<p><a href=\"https://rustdesk.com\">Rust Desk</a> is an open-source remote desktop, and alternative to TeamViewer.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Rust Desk</code> directories.\nAfterward, the <code>Rust Desk</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  2682. "categories": [
  2683. "productivity"
  2684. ],
  2685. "description": "Rust Desk is an open-source remote desktop, and alternative to TeamViewer.",
  2686. "healthy": true,
  2687. "healthy_error": null,
  2688. "home": "https://rustdesk.com",
  2689. "location": "/__w/charts/charts/community/rust-desk",
  2690. "latest_version": "1.2.4",
  2691. "latest_app_version": "1.1.10.3",
  2692. "latest_human_version": "1.1.10.3_1.2.4",
  2693. "last_update": "2024-04-15 09:28:51",
  2694. "name": "rust-desk",
  2695. "recommended": false,
  2696. "title": "Rust Desk",
  2697. "maintainers": [
  2698. {
  2699. "name": "truenas",
  2700. "url": "https://www.truenas.com/",
  2701. "email": "dev@ixsystems.com"
  2702. }
  2703. ],
  2704. "tags": [
  2705. "remote",
  2706. "desktop"
  2707. ],
  2708. "screenshots": [],
  2709. "sources": [
  2710. "https://hub.docker.com/r/rustdesk/rustdesk-server",
  2711. "https://github.com/truenas/charts/tree/master/community/rust-desk",
  2712. "https://github.com/rustdesk/rustdesk-server"
  2713. ],
  2714. "icon_url": "https://media.sys.truenas.net/apps/rust-desk/icons/icon.png"
  2715. },
  2716. "ipfs": {
  2717. "app_readme": "<h1>IPFS</h1>\n<p><a href=\"https://ipfs.tech\">Interplanetary Filesystem</a> - the Web3 standard for content-addressing, interoperable with HTTP</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the ipfs directories.\nAfterward, the <code>ipfs</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).</p>\n</blockquote>",
  2718. "categories": [
  2719. "storage"
  2720. ],
  2721. "description": "Interplanetary Filesystem - the Web3 standard for content-addressing, interoperable with HTTP",
  2722. "healthy": true,
  2723. "healthy_error": null,
  2724. "home": "https://ipfs.tech/",
  2725. "location": "/__w/charts/charts/community/ipfs",
  2726. "latest_version": "1.0.35",
  2727. "latest_app_version": "v0.27.0",
  2728. "latest_human_version": "v0.27.0_1.0.35",
  2729. "last_update": "2024-04-15 09:28:51",
  2730. "name": "ipfs",
  2731. "recommended": false,
  2732. "title": "IPFS",
  2733. "maintainers": [
  2734. {
  2735. "name": "truenas",
  2736. "url": "https://www.truenas.com/",
  2737. "email": "dev@ixsystems.com"
  2738. }
  2739. ],
  2740. "tags": [
  2741. "file-sharing",
  2742. "kubo"
  2743. ],
  2744. "screenshots": [
  2745. "https://media.sys.truenas.net/apps/ipfs/screenshots/screenshot1.png",
  2746. "https://media.sys.truenas.net/apps/ipfs/screenshots/screenshot2.png"
  2747. ],
  2748. "sources": [
  2749. "https://github.com/ipfs/kubo",
  2750. "https://github.com/truenas/charts/tree/master/community/ipfs",
  2751. "https://ipfs.tech/"
  2752. ],
  2753. "icon_url": "https://media.sys.truenas.net/apps/ipfs/icons/icon.png"
  2754. },
  2755. "wordpress": {
  2756. "app_readme": "<h1>Wordpress</h1>\n<p><a href=\"https://wordpress.org/\">Wordpress</a> is a web content management system.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>wordpress</code> directories.\nAfterward, the <code>wordpress</code> container will run as a <strong>non</strong>-root user (<code>33</code>).\nSame applies to the <code>mariadb</code> container. This will run afterwards as a <strong>non</strong>-root user (<code>999</code>).\nOn each upgrade, a container will be launched with <strong>root</strong> privileges in order to apply the correct\npermissions to the <code>mariadb</code> <strong>backups</strong> directory. Container that performs the backup will run as a <strong>non</strong>-root user (<code>999</code>) afterwards.\nKeep in mind the permissions on the backup directory will be changed to <code>999:999</code> on <strong>every</strong> update.\nBut will only be changed once for the <code>wordpress</code> and <code>mariadb</code> data directories.</p>\n</blockquote>",
  2757. "categories": [
  2758. "productivity"
  2759. ],
  2760. "description": "Wordpress is a web content management system",
  2761. "healthy": true,
  2762. "healthy_error": null,
  2763. "home": "https://wordpress.org",
  2764. "location": "/__w/charts/charts/community/wordpress",
  2765. "latest_version": "1.2.6",
  2766. "latest_app_version": "6.5.2",
  2767. "latest_human_version": "6.5.2_1.2.6",
  2768. "last_update": "2024-04-15 09:28:51",
  2769. "name": "wordpress",
  2770. "recommended": false,
  2771. "title": "Wordpress",
  2772. "maintainers": [
  2773. {
  2774. "name": "truenas",
  2775. "url": "https://www.truenas.com/",
  2776. "email": "dev@ixsystems.com"
  2777. }
  2778. ],
  2779. "tags": [
  2780. "cms",
  2781. "blog"
  2782. ],
  2783. "screenshots": [
  2784. "https://media.sys.truenas.net/apps/wordpress/screenshots/screenshot1.png",
  2785. "https://media.sys.truenas.net/apps/wordpress/screenshots/screenshot2.png",
  2786. "https://media.sys.truenas.net/apps/wordpress/screenshots/screenshot3.png",
  2787. "https://media.sys.truenas.net/apps/wordpress/screenshots/screenshot4.png"
  2788. ],
  2789. "sources": [
  2790. "https://hub.docker.com/_/wordpress",
  2791. "https://github.com/truenas/charts/tree/master/community/wordpress"
  2792. ],
  2793. "icon_url": "https://media.sys.truenas.net/apps/wordpress/icons/icon.png"
  2794. },
  2795. "ddns-updater": {
  2796. "app_readme": "<h1>DDNS Updater</h1>\n<p><a href=\"https://github.com/qdm12/ddns-updater\">DDNS Updater</a> is a lightweight universal DDNS Updater with web UI</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>DDNS Updater</code> directories.\nAfterward, the <code>DDNS Updater</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  2797. "categories": [
  2798. "networking"
  2799. ],
  2800. "description": "Lightweight universal DDNS Updater with web UI",
  2801. "healthy": true,
  2802. "healthy_error": null,
  2803. "home": "https://github.com/qdm12/ddns-updater",
  2804. "location": "/__w/charts/charts/community/ddns-updater",
  2805. "latest_version": "1.0.27",
  2806. "latest_app_version": "2.6.0",
  2807. "latest_human_version": "2.6.0_1.0.27",
  2808. "last_update": "2024-04-15 09:28:51",
  2809. "name": "ddns-updater",
  2810. "recommended": false,
  2811. "title": "DDNS Updater",
  2812. "maintainers": [
  2813. {
  2814. "name": "truenas",
  2815. "url": "https://www.truenas.com/",
  2816. "email": "dev@ixsystems.com"
  2817. }
  2818. ],
  2819. "tags": [
  2820. "ddns"
  2821. ],
  2822. "screenshots": [
  2823. "https://media.sys.truenas.net/apps/ddns-updater/screenshots/screenshot1.png"
  2824. ],
  2825. "sources": [
  2826. "https://github.com/qdm12/ddns-updater",
  2827. "https://github.com/truenas/charts/tree/master/community/ddns-updater",
  2828. "https://hub.docker.com/r/qmcgaw/ddns-updater"
  2829. ],
  2830. "icon_url": "https://media.sys.truenas.net/apps/ddns-updater/icons/icon.svg"
  2831. },
  2832. "whoogle": {
  2833. "app_readme": "<h1>Whoogle</h1>\n<p><a href=\"https://github.com/benbusby/whoogle-search\">Whoogle</a> is a self-hosted, ad-free, privacy-respecting metasearch engine</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Whoogle</code> directories.\nAfterward, the <code>Whoogle</code> container will run as a <strong>non</strong>-root user (<code>927</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>\n<p>See <a href=\"https://github.com/benbusby/whoogle-search?tab=readme-ov-file#environment-variables\">Whoogle's Docs</a> for a list of available environment variables.\nNote that all configuration via WebUI will be reset if the container is restarted.\nOnly config changes made via environment variables will persist.</p>",
  2834. "categories": [
  2835. "productivity"
  2836. ],
  2837. "description": "Whoogle is a self-hosted, ad-free, privacy-respecting metasearch engine",
  2838. "healthy": true,
  2839. "healthy_error": null,
  2840. "home": "https://github.com/benbusby/whoogle-search",
  2841. "location": "/__w/charts/charts/community/whoogle",
  2842. "latest_version": "1.2.3",
  2843. "latest_app_version": "0.8.4",
  2844. "latest_human_version": "0.8.4_1.2.3",
  2845. "last_update": "2024-04-15 09:28:51",
  2846. "name": "whoogle",
  2847. "recommended": false,
  2848. "title": "Whoogle",
  2849. "maintainers": [
  2850. {
  2851. "name": "truenas",
  2852. "url": "https://www.truenas.com/",
  2853. "email": "dev@ixsystems.com"
  2854. }
  2855. ],
  2856. "tags": [
  2857. "search",
  2858. "engine"
  2859. ],
  2860. "screenshots": [
  2861. "https://media.sys.truenas.net/apps/whoogle/screenshots/screenshot1.png",
  2862. "https://media.sys.truenas.net/apps/whoogle/screenshots/screenshot2.png"
  2863. ],
  2864. "sources": [
  2865. "https://github.com/benbusby/whoogle-search",
  2866. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/whoogle",
  2867. "https://hub.docker.com/r/benbusby/whoogle-search"
  2868. ],
  2869. "icon_url": "https://media.sys.truenas.net/apps/whoogle/icons/icon.png"
  2870. },
  2871. "odoo": {
  2872. "app_readme": "<h1>Odoo</h1>\n<p><a href=\"https://odoo.com\">Odoo</a> is a suite of web based open source business apps.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>postgres</code> directories.\nAfterwards <code>postgres</code> will run afterwards as a <strong>non</strong>-root user (<code>999</code>).\nOn each upgrade, a container will be launched with <strong>root</strong> privileges in order to apply the correct\npermissions to the <code>postgres</code> <strong>backups</strong> directory. Container that performs the backup will run as a <strong>non</strong>-root user (<code>999</code>) afterwards.\nKeep in mind the permissions on the backup directory will be changed to <code>999:999</code> on <strong>every</strong> update.\nBut will only be changed once for the <code>postgres</code> data directories.</p>\n</blockquote>",
  2873. "categories": [
  2874. "productivity"
  2875. ],
  2876. "description": "Odoo is a suite of web based open source business apps.",
  2877. "healthy": true,
  2878. "healthy_error": null,
  2879. "home": "https://www.odoo.com/",
  2880. "location": "/__w/charts/charts/community/odoo",
  2881. "latest_version": "2.0.8",
  2882. "latest_app_version": "17.0",
  2883. "latest_human_version": "17.0_2.0.8",
  2884. "last_update": "2024-04-15 09:28:51",
  2885. "name": "odoo",
  2886. "recommended": false,
  2887. "title": "Odoo",
  2888. "maintainers": [
  2889. {
  2890. "name": "truenas",
  2891. "url": "https://www.truenas.com/",
  2892. "email": "dev@ixsystems.com"
  2893. }
  2894. ],
  2895. "tags": [
  2896. "erp"
  2897. ],
  2898. "screenshots": [
  2899. "https://media.sys.truenas.net/apps/odoo/screenshots/screenshot1.png",
  2900. "https://media.sys.truenas.net/apps/odoo/screenshots/screenshot2.png"
  2901. ],
  2902. "sources": [
  2903. "https://hub.docker.com/_/odoo",
  2904. "https://github.com/truenas/charts/tree/master/community/odoo",
  2905. "https://github.com/odoo/odoo"
  2906. ],
  2907. "icon_url": "https://media.sys.truenas.net/apps/odoo/icons/icon.png"
  2908. },
  2909. "listmonk": {
  2910. "app_readme": "<h1>Listmonk</h1>\n<p><a href=\"https://listmonk.app/\">Listmonk</a> is a self-hosted newsletter and mailing list manager.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>listmonk</code> directories.\nAfterward, the <code>listmonk</code> container will run as a <strong>non</strong>-root user (default <code>568</code>).\nSame applies to the <code>postgres</code> container. This will run afterwards as a <strong>non</strong>-root user (<code>999</code>).\nOn each upgrade, a container will be launched with <strong>root</strong> privileges in order to apply the correct\npermissions to the <code>postgres</code> <strong>backups</strong> directory. Container that performs the backup will run as a <strong>non</strong>-root user (<code>999</code>) afterwards.\nKeep in mind the permissions on the backup directory will be changed to <code>999:999</code> on <strong>every</strong> update.\nBut will only be changed once for the <code>listmonk</code> and <code>postgres</code> data directories.</p>\n</blockquote>",
  2911. "categories": [
  2912. "productivity"
  2913. ],
  2914. "description": "Listmonk is a self-hosted newsletter and mailing list manager.",
  2915. "healthy": true,
  2916. "healthy_error": null,
  2917. "home": "https://listmonk.app/",
  2918. "location": "/__w/charts/charts/community/listmonk",
  2919. "latest_version": "1.2.8",
  2920. "latest_app_version": "3.0.0",
  2921. "latest_human_version": "3.0.0_1.2.8",
  2922. "last_update": "2024-04-15 09:28:51",
  2923. "name": "listmonk",
  2924. "recommended": false,
  2925. "title": "Listmonk",
  2926. "maintainers": [
  2927. {
  2928. "name": "truenas",
  2929. "url": "https://www.truenas.com/",
  2930. "email": "dev@ixsystems.com"
  2931. }
  2932. ],
  2933. "tags": [
  2934. "mailing-list",
  2935. "newsletter"
  2936. ],
  2937. "screenshots": [
  2938. "https://media.sys.truenas.net/apps/listmonk/screenshots/screenshot1.png",
  2939. "https://media.sys.truenas.net/apps/listmonk/screenshots/screenshot2.png",
  2940. "https://media.sys.truenas.net/apps/listmonk/screenshots/screenshot3.png"
  2941. ],
  2942. "sources": [
  2943. "https://hub.docker.com/r/listmonk/listmonk",
  2944. "https://github.com/knadh/listmonk",
  2945. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/listmonk"
  2946. ],
  2947. "icon_url": "https://media.sys.truenas.net/apps/listmonk/icons/icon.svg"
  2948. },
  2949. "webdav": {
  2950. "app_readme": "<h1>WebDAV</h1>\n<p><a href=\"http://webdav.org/\">WebDAV</a> is a set of extensions to the HTTP protocol which allows users to collaboratively edit and manage files on remote web servers.</p>\n<blockquote>\n<p>When application is installed and <code>Fix Permissions</code> is selected on at least 1 share\na container will be launched with <strong>root</strong> privileges. This is required in order to apply\nthe correct permissions to the <code>WebDAV</code> shares/directories.\nAfterward, the <code>WebDAV</code> container will run as a <strong>non</strong>-root user (Default: <code>666</code>).\n<code>Chown</code> will only apply if the parent directory does not match the configured user and group.</p>\n</blockquote>",
  2951. "categories": [
  2952. "file-sharing"
  2953. ],
  2954. "description": "WebDAV is a set of extensions to the HTTP protocol which allows users to collaboratively edit and manage files on remote web servers.",
  2955. "healthy": true,
  2956. "healthy_error": null,
  2957. "home": "http://www.webdav.org/",
  2958. "location": "/__w/charts/charts/community/webdav",
  2959. "latest_version": "1.0.22",
  2960. "latest_app_version": "2.4.59",
  2961. "latest_human_version": "2.4.59_1.0.22",
  2962. "last_update": "2024-04-15 09:30:16",
  2963. "name": "webdav",
  2964. "recommended": false,
  2965. "title": "WebDAV",
  2966. "maintainers": [
  2967. {
  2968. "name": "truenas",
  2969. "url": "https://www.truenas.com/",
  2970. "email": "dev@ixsystems.com"
  2971. }
  2972. ],
  2973. "tags": [
  2974. "webdav",
  2975. "file-sharing"
  2976. ],
  2977. "screenshots": [],
  2978. "sources": [
  2979. "http://www.webdav.org/",
  2980. "https://github.com/truenas/charts/tree/master/community/webdav"
  2981. ],
  2982. "icon_url": "https://media.sys.truenas.net/apps/webdav/icons/icon.png"
  2983. },
  2984. "node-red": {
  2985. "app_readme": "<h1>Node-RED</h1>\n<p><a href=\"https://nodered.org\">Node-RED</a> is a programming tool for wiring together hardware devices, APIs and online services in new and interesting ways.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Node-RED</code> directories.\nAfterward, the <code>Node-RED</code> container will run as a <strong>non</strong>-root user (<code>1000</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  2986. "categories": [
  2987. "productivity"
  2988. ],
  2989. "description": "Node-RED is a programming tool for wiring together hardware devices, APIs and online services in new and interesting ways.",
  2990. "healthy": true,
  2991. "healthy_error": null,
  2992. "home": "https://nodered.org",
  2993. "location": "/__w/charts/charts/community/node-red",
  2994. "latest_version": "1.2.9",
  2995. "latest_app_version": "3.1.9",
  2996. "latest_human_version": "3.1.9_1.2.9",
  2997. "last_update": "2024-04-15 09:28:51",
  2998. "name": "node-red",
  2999. "recommended": false,
  3000. "title": "Node-RED",
  3001. "maintainers": [
  3002. {
  3003. "name": "truenas",
  3004. "url": "https://www.truenas.com/",
  3005. "email": "dev@ixsystems.com"
  3006. }
  3007. ],
  3008. "tags": [
  3009. "automation"
  3010. ],
  3011. "screenshots": [
  3012. "https://media.sys.truenas.net/apps/node-red/screenshots/screenshot1.png"
  3013. ],
  3014. "sources": [
  3015. "https://github.com/node-red/node-red-docker",
  3016. "https://github.com/truenas/charts/tree/master/community/node-red",
  3017. "https://nodered.org"
  3018. ],
  3019. "icon_url": "https://media.sys.truenas.net/apps/node-red/icons/icon.png"
  3020. },
  3021. "unifi-protect-backup": {
  3022. "app_readme": "<h1>Unifi Protect Backup</h1>\n<p><a href=\"https://github.com/ep1cman/unifi-protect-backup\">Unifi Protect Backup</a> is a python based tool for backing up UniFi Protect event clips as they occur.</p>",
  3023. "categories": [
  3024. "storage"
  3025. ],
  3026. "description": "Unifi Protect Backup is a python based tool for backing up UniFi Protect event clips as they occur.",
  3027. "healthy": true,
  3028. "healthy_error": null,
  3029. "home": "https://github.com/ep1cman/unifi-protect-backup",
  3030. "location": "/__w/charts/charts/community/unifi-protect-backup",
  3031. "latest_version": "1.2.7",
  3032. "latest_app_version": "0.10.7",
  3033. "latest_human_version": "0.10.7_1.2.7",
  3034. "last_update": "2024-04-15 09:28:51",
  3035. "name": "unifi-protect-backup",
  3036. "recommended": false,
  3037. "title": "Unifi Protect Backup",
  3038. "maintainers": [
  3039. {
  3040. "name": "truenas",
  3041. "url": "https://www.truenas.com/",
  3042. "email": "dev@ixsystems.com"
  3043. }
  3044. ],
  3045. "tags": [
  3046. "backup",
  3047. "unifi-protect"
  3048. ],
  3049. "screenshots": [],
  3050. "sources": [
  3051. "https://github.com/ep1cman/unifi-protect-backup",
  3052. "https://github.com/truenas/charts/tree/master/community/unifi-protect-backup",
  3053. "https://github.com/ep1cman/unifi-protect-backup/pkgs/container/unifi-protect-backup/"
  3054. ],
  3055. "icon_url": "https://media.sys.truenas.net/apps/unifi-protect-backup/icons/icon.png"
  3056. },
  3057. "jellyfin": {
  3058. "app_readme": "<h1>Jellyfin</h1>\n<p><a href=\"https://jellyfin.org/\">Jellyfin</a> is a Free Software Media System that puts you in control of managing and streaming your media.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Jellyfin</code> directories.\nAfterward, the <code>Jellyfin</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  3059. "categories": [
  3060. "media"
  3061. ],
  3062. "description": "Jellyfin is a Free Software Media System that puts you in control of managing and streaming your media.",
  3063. "healthy": true,
  3064. "healthy_error": null,
  3065. "home": "https://jellyfin.org/",
  3066. "location": "/__w/charts/charts/community/jellyfin",
  3067. "latest_version": "1.2.7",
  3068. "latest_app_version": "10.8.13.1",
  3069. "latest_human_version": "10.8.13.1_1.2.7",
  3070. "last_update": "2024-04-15 09:28:51",
  3071. "name": "jellyfin",
  3072. "recommended": false,
  3073. "title": "Jellyfin",
  3074. "maintainers": [
  3075. {
  3076. "name": "truenas",
  3077. "url": "https://www.truenas.com/",
  3078. "email": "dev@ixsystems.com"
  3079. }
  3080. ],
  3081. "tags": [
  3082. "entertainment",
  3083. "movies",
  3084. "series",
  3085. "tv",
  3086. "streaming"
  3087. ],
  3088. "screenshots": [
  3089. "https://media.sys.truenas.net/apps/jellyfin/screenshots/screenshot1.png",
  3090. "https://media.sys.truenas.net/apps/jellyfin/screenshots/screenshot2.png"
  3091. ],
  3092. "sources": [
  3093. "https://hub.docker.com/r/jellyfin/jellyfin",
  3094. "https://github.com/truenas/charts/tree/master/community/jellyfin",
  3095. "https://jellyfin.org/"
  3096. ],
  3097. "icon_url": "https://media.sys.truenas.net/apps/jellyfin/icons/icon.svg"
  3098. },
  3099. "bazarr": {
  3100. "app_readme": "<h1>Bazarr</h1>\n<p><a href=\"https://www.bazarr.media/\">Bazarr</a> is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Bazarr</code> directories.\nAfterward, the <code>Bazarr</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  3101. "categories": [
  3102. "media"
  3103. ],
  3104. "description": "Bazarr is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements.",
  3105. "healthy": true,
  3106. "healthy_error": null,
  3107. "home": "https://www.bazarr.media/",
  3108. "location": "/__w/charts/charts/community/bazarr",
  3109. "latest_version": "1.2.10",
  3110. "latest_app_version": "1.4.2",
  3111. "latest_human_version": "1.4.2_1.2.10",
  3112. "last_update": "2024-04-15 09:28:51",
  3113. "name": "bazarr",
  3114. "recommended": false,
  3115. "title": "Bazarr",
  3116. "maintainers": [
  3117. {
  3118. "name": "truenas",
  3119. "url": "https://www.truenas.com/",
  3120. "email": "dev@ixsystems.com"
  3121. }
  3122. ],
  3123. "tags": [
  3124. "subtitles"
  3125. ],
  3126. "screenshots": [
  3127. "https://media.sys.truenas.net/apps/bazarr/screenshots/screenshot1.png",
  3128. "https://media.sys.truenas.net/apps/bazarr/screenshots/screenshot2.png"
  3129. ],
  3130. "sources": [
  3131. "https://github.com/onedr0p/containers/tree/main/apps/bazarr",
  3132. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/bazarr",
  3133. "https://github.com/morpheus65535/bazarr"
  3134. ],
  3135. "icon_url": "https://media.sys.truenas.net/apps/bazarr/icons/icon.png"
  3136. },
  3137. "cloudflared": {
  3138. "app_readme": "<h1>Cloudflared</h1>\n<p><a href=\"https://github.com/cloudflare/cloudflared\">Cloudflared</a> is a client for Cloudflare Tunnel, a daemon that exposes private services through the Cloudflare edge.</p>",
  3139. "categories": [
  3140. "network"
  3141. ],
  3142. "description": "Cloudflared is a client for Cloudflare Tunnel, a daemon that exposes private services through the Cloudflare edge.",
  3143. "healthy": true,
  3144. "healthy_error": null,
  3145. "home": "https://github.com/cloudflare/cloudflared",
  3146. "location": "/__w/charts/charts/community/cloudflared",
  3147. "latest_version": "1.2.11",
  3148. "latest_app_version": "2024.4.0",
  3149. "latest_human_version": "2024.4.0_1.2.11",
  3150. "last_update": "2024-04-15 09:28:51",
  3151. "name": "cloudflared",
  3152. "recommended": false,
  3153. "title": "Cloudflared",
  3154. "maintainers": [
  3155. {
  3156. "name": "truenas",
  3157. "url": "https://www.truenas.com/",
  3158. "email": "dev@ixsystems.com"
  3159. }
  3160. ],
  3161. "tags": [
  3162. "tunnel",
  3163. "cloudflare"
  3164. ],
  3165. "screenshots": [],
  3166. "sources": [
  3167. "https://github.com/cloudflare/cloudflared",
  3168. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/cloudflared",
  3169. "https://hub.docker.com/r/cloudflare/cloudflared"
  3170. ],
  3171. "icon_url": "https://media.sys.truenas.net/apps/cloudflared/icons/icon.png"
  3172. },
  3173. "sftpgo": {
  3174. "app_readme": "<h1>SFTPGo</h1>\n<p><a href=\"https://github.com/drakkan/sftpgo\">SFTPGo</a> is a fully featured and highly configurable SFTP server with optional HTTP/S, FTP/S and WebDAV support - S3, Google Cloud Storage, Azure Blob</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>SFTPGo</code> directories.\nAfterward, the <code>SFTPGo</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  3175. "categories": [
  3176. "storage"
  3177. ],
  3178. "description": "SFTPGo is a fully featured and highly configurable SFTP server with optional HTTP/S, FTP/S and WebDAV support - S3, Google Cloud Storage, Azure Blob",
  3179. "healthy": true,
  3180. "healthy_error": null,
  3181. "home": "https://github.com/drakkan/sftpgo",
  3182. "location": "/__w/charts/charts/community/sftpgo",
  3183. "latest_version": "1.2.5",
  3184. "latest_app_version": "2.5.6",
  3185. "latest_human_version": "2.5.6_1.2.5",
  3186. "last_update": "2024-04-15 09:28:51",
  3187. "name": "sftpgo",
  3188. "recommended": false,
  3189. "title": "SFTPGo",
  3190. "maintainers": [
  3191. {
  3192. "name": "truenas",
  3193. "url": "https://www.truenas.com/",
  3194. "email": "dev@ixsystems.com"
  3195. }
  3196. ],
  3197. "tags": [
  3198. "sftp"
  3199. ],
  3200. "screenshots": [],
  3201. "sources": [
  3202. "https://hub.docker.com/r/drakkan/sftpgo",
  3203. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/sftpgo",
  3204. "https://github.com/drakkan/sftpgo"
  3205. ],
  3206. "icon_url": "https://media.sys.truenas.net/apps/sftpgo/icons/icon.png"
  3207. },
  3208. "tftpd-hpa": {
  3209. "app_readme": "<h1>TFTP</h1>\n<p><a href=\"https://manpages.debian.org/testing/tftpd-hpa/tftpd.8.en.html\">TFTP</a> is a server for the Trivial File Transfer Protocol.</p>\n<p>The app runs as <code>root</code> user and drops privileges to <code>tftp</code> (9069) user for the TFTP service.</p>\n<blockquote>\n<p>On every application start, a container will be launched with <strong>root</strong> privileges.\nThis will check the parent directory permissions and ownership.\nIf there is a mismatch it will apply the correct permissions to the TFTP directories.\nWhen \"Allow Create\" is checked, the above container will also check and <code>chmod</code> if needed\nto <code>757</code> the TFTP directories and to <code>555</code> when not checked.\nAfterward, the <code>TFTP</code> container will run as a <strong>root</strong> user, dropping privileges\nto <code>tftp</code> (9069) user for the TFTP service.\nNote: You need to have configured DHCP server for network boot to work.</p>\n</blockquote>",
  3210. "categories": [
  3211. "networking"
  3212. ],
  3213. "description": "A lightweight tftp-server",
  3214. "healthy": true,
  3215. "healthy_error": null,
  3216. "home": "https://github.com/truenas/containers/tree/main/apps/tftpd-hpa",
  3217. "location": "/__w/charts/charts/community/tftpd-hpa",
  3218. "latest_version": "1.0.18",
  3219. "latest_app_version": "1.0.0",
  3220. "latest_human_version": "1.0.0_1.0.18",
  3221. "last_update": "2024-04-15 09:28:51",
  3222. "name": "tftpd-hpa",
  3223. "recommended": false,
  3224. "title": "TFTP Server",
  3225. "maintainers": [
  3226. {
  3227. "name": "truenas",
  3228. "url": "https://www.truenas.com/",
  3229. "email": "dev@ixsystems.com"
  3230. }
  3231. ],
  3232. "tags": [
  3233. "tftp"
  3234. ],
  3235. "screenshots": [],
  3236. "sources": [
  3237. "https://github.com/truenas/containers/tree/main/apps/tftpd-hpa",
  3238. "https://github.com/truenas/charts/tree/master/community/tftpd-hpa",
  3239. "https://hub.docker.com/r/ixsystems/tftpd-hpa"
  3240. ],
  3241. "icon_url": "https://media.sys.truenas.net/apps/tftpd-hpa/icons/icon.png"
  3242. },
  3243. "homepage": {
  3244. "app_readme": "<h1>Homepage</h1>\n<p><a href=\"https://github.com/benphelps/homepage\">Homepage</a> is a modern, secure, highly customizable application dashboard.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Homepage</code> directories.\nAfterward, the <code>Homepage</code> container will run as a <strong>non</strong>-root user (<code>1000</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  3245. "categories": [
  3246. "productivity"
  3247. ],
  3248. "description": "Homepage is a modern, secure, highly customizable application dashboard.",
  3249. "healthy": true,
  3250. "healthy_error": null,
  3251. "home": "https://gethomepage.dev/",
  3252. "location": "/__w/charts/charts/community/homepage",
  3253. "latest_version": "1.2.10",
  3254. "latest_app_version": "0.8.11",
  3255. "latest_human_version": "0.8.11_1.2.10",
  3256. "last_update": "2024-04-15 09:28:51",
  3257. "name": "homepage",
  3258. "recommended": false,
  3259. "title": "Homepage",
  3260. "maintainers": [
  3261. {
  3262. "name": "truenas",
  3263. "url": "https://www.truenas.com/",
  3264. "email": "dev@ixsystems.com"
  3265. }
  3266. ],
  3267. "tags": [
  3268. "dashboard"
  3269. ],
  3270. "screenshots": [
  3271. "https://media.sys.truenas.net/apps/homepage/screenshots/screenshot1.png",
  3272. "https://media.sys.truenas.net/apps/homepage/screenshots/screenshot2.png",
  3273. "https://media.sys.truenas.net/apps/homepage/screenshots/screenshot3.png",
  3274. "https://media.sys.truenas.net/apps/homepage/screenshots/screenshot4.png",
  3275. "https://media.sys.truenas.net/apps/homepage/screenshots/screenshot5.png",
  3276. "https://media.sys.truenas.net/apps/homepage/screenshots/screenshot6.png"
  3277. ],
  3278. "sources": [
  3279. "https://gethomepage.dev/",
  3280. "https://github.com/truenas/charts/tree/master/community/homepage",
  3281. "https://github.com/benphelps/homepage"
  3282. ],
  3283. "icon_url": "https://media.sys.truenas.net/apps/homepage/icons/icon.png"
  3284. },
  3285. "tailscale": {
  3286. "app_readme": "<h1>Tailscale</h1>\n<p><a href=\"https://tailscale.com\">Tailscale</a> Secure remote access to shared resources</p>\n<ul>\n<li>When <code>Userspace</code> is <strong>disabled</strong>, <code>Tailscale</code> will run as root, with <code>/dev/net/tun</code> device mounted from the host.</li>\n<li>When <code>Userspace</code> is <strong>enabled</strong>, <code>Tailscale</code> will run as a non-root user.</li>\n</ul>",
  3287. "categories": [
  3288. "networking"
  3289. ],
  3290. "description": "Secure remote access to shared resources",
  3291. "healthy": true,
  3292. "healthy_error": null,
  3293. "home": "https://tailscale.com/",
  3294. "location": "/__w/charts/charts/community/tailscale",
  3295. "latest_version": "1.0.36",
  3296. "latest_app_version": "1.62.1",
  3297. "latest_human_version": "1.62.1_1.0.36",
  3298. "last_update": "2024-04-15 09:28:51",
  3299. "name": "tailscale",
  3300. "recommended": false,
  3301. "title": "Tailscale",
  3302. "maintainers": [
  3303. {
  3304. "name": "truenas",
  3305. "url": "https://www.truenas.com/",
  3306. "email": "dev@ixsystems.com"
  3307. }
  3308. ],
  3309. "tags": [
  3310. "vpn"
  3311. ],
  3312. "screenshots": [],
  3313. "sources": [
  3314. "https://tailscale.com/",
  3315. "https://github.com/truenas/charts/tree/master/community/tailscale",
  3316. "https://hub.docker.com/r/tailscale/tailscale"
  3317. ],
  3318. "icon_url": "https://media.sys.truenas.net/apps/tailscale/icons/icon.png"
  3319. },
  3320. "recyclarr": {
  3321. "app_readme": "<h1>Recyclarr</h1>\n<p><a href=\"https://github.com/recyclarr/recyclarr\">Recyclarr</a> synchronizes recommended settings from the TRaSH guides to your Sonarr/Radarr instances.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Recyclarr</code> directories.\nAfterward, the <code>Recyclarr</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  3322. "categories": [
  3323. "media"
  3324. ],
  3325. "description": "Recyclarr synchronizes recommended settings from the TRaSH guides to your Sonarr/Radarr instances.",
  3326. "healthy": true,
  3327. "healthy_error": null,
  3328. "home": "https://recyclarr.dev",
  3329. "location": "/__w/charts/charts/community/recyclarr",
  3330. "latest_version": "1.2.3",
  3331. "latest_app_version": "6.0.2",
  3332. "latest_human_version": "6.0.2_1.2.3",
  3333. "last_update": "2024-04-15 09:28:51",
  3334. "name": "recyclarr",
  3335. "recommended": false,
  3336. "title": "Recyclarr",
  3337. "maintainers": [
  3338. {
  3339. "name": "truenas",
  3340. "url": "https://www.truenas.com/",
  3341. "email": "dev@ixsystems.com"
  3342. }
  3343. ],
  3344. "tags": [
  3345. "sync",
  3346. "sonarr",
  3347. "radarr"
  3348. ],
  3349. "screenshots": [],
  3350. "sources": [
  3351. "https://recyclarr.dev",
  3352. "https://github.com/truenas/charts/tree/master/community/recyclarr",
  3353. "https://github.com/recyclarr/recyclarr/tree/recyclarr"
  3354. ],
  3355. "icon_url": "https://media.sys.truenas.net/apps/recyclarr/icons/icon.png"
  3356. },
  3357. "logseq": {
  3358. "app_readme": "<h1>Logseq</h1>\n<p><a href=\"https://logseq.com/\">Logseq</a> is a privacy-first, open-source platform for knowledge management and collaboration.</p>\n<p>HTTPS is <strong>required</strong> in order to use Logseq.</p>\n<p>Either by using the Certificate selection or with an external reverse proxy.</p>",
  3359. "categories": [
  3360. "productivity"
  3361. ],
  3362. "description": "Logseq is a privacy-first, open-source platform for knowledge management and collaboration.",
  3363. "healthy": true,
  3364. "healthy_error": null,
  3365. "home": "https://logseq.com/",
  3366. "location": "/__w/charts/charts/community/logseq",
  3367. "latest_version": "1.2.3",
  3368. "latest_app_version": "latest",
  3369. "latest_human_version": "latest_1.2.3",
  3370. "last_update": "2024-04-15 09:28:51",
  3371. "name": "logseq",
  3372. "recommended": false,
  3373. "title": "Logseq",
  3374. "maintainers": [
  3375. {
  3376. "name": "truenas",
  3377. "url": "https://www.truenas.com/",
  3378. "email": "dev@ixsystems.com"
  3379. }
  3380. ],
  3381. "tags": [
  3382. "knowledge",
  3383. "management"
  3384. ],
  3385. "screenshots": [],
  3386. "sources": [
  3387. "https://github.com/logseq/logseq",
  3388. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/logseq"
  3389. ],
  3390. "icon_url": "https://media.sys.truenas.net/apps/logseq/icons/icon.png"
  3391. },
  3392. "adguard-home": {
  3393. "app_readme": "<h1>AdGuard Home</h1>\n<p>During the setup wizard, AdGuard Home presents an option to select on which port the web interface will be available.\n(Defaults to 80. Which is a privileged port and also usually the TrueNAS SCALE UI uses that port)\nBecause of that, App will force the webUI to listen to port 30000 (or the port selected by user in the TrueNAS SCALE UI).</p>\n<p>If you select a different port in the wizard, the Dashboard will not work initially but\nafter a couple of minutes container will automatically restart and the Dashboard will\nbe available on the port you selected on the TrueNAS SCALE UI.</p>\n<blockquote>\n<ul>\n<li>AdGuard runs as <code>root</code> user.</li>\n<li>AdGuard runs with host networking enabled.</li>\n</ul>\n</blockquote>",
  3394. "categories": [
  3395. "networking"
  3396. ],
  3397. "description": "Free and open source, powerful network-wide ads & trackers blocking DNS server.",
  3398. "healthy": true,
  3399. "healthy_error": null,
  3400. "home": "https://github.com/AdguardTeam/AdGuardHome",
  3401. "location": "/__w/charts/charts/community/adguard-home",
  3402. "latest_version": "1.0.41",
  3403. "latest_app_version": "0.107.48",
  3404. "latest_human_version": "0.107.48_1.0.41",
  3405. "last_update": "2024-04-15 09:28:51",
  3406. "name": "adguard-home",
  3407. "recommended": false,
  3408. "title": "AdGuard Home",
  3409. "maintainers": [
  3410. {
  3411. "name": "truenas",
  3412. "url": "https://www.truenas.com/",
  3413. "email": "dev@ixsystems.com"
  3414. }
  3415. ],
  3416. "tags": [
  3417. "dns",
  3418. "adblock"
  3419. ],
  3420. "screenshots": [
  3421. "https://media.sys.truenas.net/apps/adguard-home/screenshots/screenshot1.png",
  3422. "https://media.sys.truenas.net/apps/adguard-home/screenshots/screenshot2.png"
  3423. ],
  3424. "sources": [
  3425. "https://github.com/AdguardTeam/AdGuardHome",
  3426. "https://github.com/truenas/charts/tree/master/community/adguard-home",
  3427. "https://hub.docker.com/r/adguard/adguardhome"
  3428. ],
  3429. "icon_url": "https://media.sys.truenas.net/apps/adguard-home/icons/icon.png"
  3430. },
  3431. "readarr": {
  3432. "app_readme": "<h1>Readarr</h1>\n<p><a href=\"https://github.com/Readarr/Readarr\">Readarr</a> is an ebook and audiobook collection manager for Usenet and BitTorrent users.</p>",
  3433. "categories": [
  3434. "media"
  3435. ],
  3436. "description": "Readarr is an ebook and audiobook collection manager for Usenet and BitTorrent users.",
  3437. "healthy": true,
  3438. "healthy_error": null,
  3439. "home": "https://github.com/Readarr/Readarr",
  3440. "location": "/__w/charts/charts/community/readarr",
  3441. "latest_version": "1.2.16",
  3442. "latest_app_version": "0.3.22.2499",
  3443. "latest_human_version": "0.3.22.2499_1.2.16",
  3444. "last_update": "2024-04-15 09:30:16",
  3445. "name": "readarr",
  3446. "recommended": false,
  3447. "title": "Readarr",
  3448. "maintainers": [
  3449. {
  3450. "name": "truenas",
  3451. "url": "https://www.truenas.com/",
  3452. "email": "dev@ixsystems.com"
  3453. }
  3454. ],
  3455. "tags": [
  3456. "ebook",
  3457. "audiobook"
  3458. ],
  3459. "screenshots": [
  3460. "https://media.sys.truenas.net/apps/readarr/screenshots/screenshot1.png",
  3461. "https://media.sys.truenas.net/apps/readarr/screenshots/screenshot2.png",
  3462. "https://media.sys.truenas.net/apps/readarr/screenshots/screenshot3.png"
  3463. ],
  3464. "sources": [
  3465. "https://github.com/onedr0p/containers/tree/main/apps/readarr",
  3466. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/readarr",
  3467. "https://github.com/Readarr/Readarr"
  3468. ],
  3469. "icon_url": "https://media.sys.truenas.net/apps/readarr/icons/icon.png"
  3470. },
  3471. "mineos": {
  3472. "app_readme": "<h1>MineOS</h1>\n<p><a href=\"https://github.com/hexparrot/mineos-node\">MineOS</a> is a server front-end to ease managing Minecraft administrative tasks.</p>",
  3473. "categories": [
  3474. "games"
  3475. ],
  3476. "description": "MineOS is a server front-end to ease managing Minecraft administrative tasks.",
  3477. "healthy": true,
  3478. "healthy_error": null,
  3479. "home": "https://github.com/hexparrot/mineos-node",
  3480. "location": "/__w/charts/charts/community/mineos",
  3481. "latest_version": "1.0.20",
  3482. "latest_app_version": "latest",
  3483. "latest_human_version": "latest_1.0.20",
  3484. "last_update": "2024-04-15 09:28:51",
  3485. "name": "mineos",
  3486. "recommended": false,
  3487. "title": "MineOS",
  3488. "maintainers": [
  3489. {
  3490. "name": "truenas",
  3491. "url": "https://www.truenas.com/",
  3492. "email": "dev@ixsystems.com"
  3493. }
  3494. ],
  3495. "tags": [
  3496. "minecraft"
  3497. ],
  3498. "screenshots": [
  3499. "https://media.sys.truenas.net/apps/mineos/screenshots/screenshot1.png"
  3500. ],
  3501. "sources": [
  3502. "https://hub.docker.com/r/hexparrot/mineos/",
  3503. "https://github.com/truenas/charts/tree/master/community/mineos",
  3504. "https://github.com/hexparrot/mineos-node"
  3505. ],
  3506. "icon_url": "https://media.sys.truenas.net/apps/mineos/icons/icon.png"
  3507. },
  3508. "linkding": {
  3509. "app_readme": "<h1>Linkding</h1>\n<p><a href=\"https://github.com/sissbruecker/linkding\">Linkding</a> is a bookmark manager that you can host yourself.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>linkding</code> directories.\nAfterward, the <code>linkding</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nSame applies to the <code>postgres</code> container. This will run afterwards as a <strong>non</strong>-root user (<code>999</code>).\nOn each upgrade, a container will be launched with <strong>root</strong> privileges in order to apply the correct\npermissions to the <code>postgres</code> <strong>backups</strong> directory. Container that performs the backup will run as a <strong>non</strong>-root user (<code>999</code>) afterwards.\nKeep in mind the permissions on the backup directory will be changed to <code>999:999</code> on <strong>every</strong> update.\nBut will only be changed once for the <code>linkding</code> and <code>postgres</code> data directories.</p>\n</blockquote>",
  3510. "categories": [
  3511. "productivity"
  3512. ],
  3513. "description": "Linkding is a bookmark manager that you can host yourself.",
  3514. "healthy": true,
  3515. "healthy_error": null,
  3516. "home": "https://github.com/sissbruecker/linkding",
  3517. "location": "/__w/charts/charts/community/linkding",
  3518. "latest_version": "1.2.15",
  3519. "latest_app_version": "1.27.0",
  3520. "latest_human_version": "1.27.0_1.2.15",
  3521. "last_update": "2024-04-15 09:28:51",
  3522. "name": "linkding",
  3523. "recommended": false,
  3524. "title": "Linkding",
  3525. "maintainers": [
  3526. {
  3527. "name": "truenas",
  3528. "url": "https://www.truenas.com/",
  3529. "email": "dev@ixsystems.com"
  3530. }
  3531. ],
  3532. "tags": [
  3533. "bookmark"
  3534. ],
  3535. "screenshots": [
  3536. "https://media.sys.truenas.net/apps/linkding/screenshots/screenshot1.png"
  3537. ],
  3538. "sources": [
  3539. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/linkding",
  3540. "https://github.com/sissbruecker/linkding",
  3541. "https://hub.docker.com/r/sissbruecker/linkding/"
  3542. ],
  3543. "icon_url": "https://media.sys.truenas.net/apps/linkding/icons/icon.svg"
  3544. },
  3545. "chia": {
  3546. "app_readme": "<h1>Chia</h1>\n<p>This container runs as <code>root</code> user.</p>\n<p>When a port is set to &lt; 9000. Host Networking is enabled automatically.</p>\n<blockquote>\n<p>Also NodePort services turn to ClusterIP services, to avoid attempts to bind ports twice.</p>\n</blockquote>\n<p>Key file is stored in <code>/plots/keyfile</code> and is generated automatically, <strong>only</strong> if the file does not exist.\nIf you want to use your own <code>keyfile</code>, you can create a file called <code>keyfile</code> in the <code>/plots</code> directory and it will be used instead.</p>\n<blockquote>\n<p>When set on <code>harvester</code> mode <code>keys</code> variable is set to <code>none</code> and no generation is performed.</p>\n</blockquote>",
  3547. "categories": [
  3548. "financial"
  3549. ],
  3550. "description": "Chia is a modern cryptocurrency built from scratch, designed to be efficient, decentralized, and secure.",
  3551. "healthy": true,
  3552. "healthy_error": null,
  3553. "home": "https://www.chia.net/",
  3554. "location": "/__w/charts/charts/community/chia",
  3555. "latest_version": "1.0.34",
  3556. "latest_app_version": "2.2.1",
  3557. "latest_human_version": "2.2.1_1.0.34",
  3558. "last_update": "2024-04-15 09:28:51",
  3559. "name": "chia",
  3560. "recommended": false,
  3561. "title": "Chia",
  3562. "maintainers": [
  3563. {
  3564. "name": "truenas",
  3565. "url": "https://www.truenas.com/",
  3566. "email": "dev@ixsystems.com"
  3567. }
  3568. ],
  3569. "tags": [
  3570. "blockchain",
  3571. "hard-drive"
  3572. ],
  3573. "screenshots": [],
  3574. "sources": [
  3575. "https://github.com/Chia-Network/chia-docker",
  3576. "https://github.com/truenas/charts/tree/master/community/chia",
  3577. "https://www.chia.net/"
  3578. ],
  3579. "icon_url": "https://media.sys.truenas.net/apps/chia/icons/icon.svg"
  3580. },
  3581. "jenkins": {
  3582. "app_readme": "<h1>Jenkins</h1>\n<p><a href=\"https://www.jenkins.io/\">Jenkins</a>. The leading open source automation server, Jenkins provides hundreds of\nplugins to support building, deploying and automating any project.</p>\n<blockquote>\n<p>When application is installed and on each startup, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Jenkins</code> directories.\nAfterward, the <code>Jenkins</code> container will run as a <strong>non</strong>-root user (<code>1000</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the user and group (<code>1000</code>).</p>\n</blockquote>",
  3583. "categories": [
  3584. "productivity"
  3585. ],
  3586. "description": "Jenkins is a leading open source automation server,",
  3587. "healthy": true,
  3588. "healthy_error": null,
  3589. "home": "https://www.jenkins.io/",
  3590. "location": "/__w/charts/charts/community/jenkins",
  3591. "latest_version": "1.2.7",
  3592. "latest_app_version": "2.440.2",
  3593. "latest_human_version": "2.440.2_1.2.7",
  3594. "last_update": "2024-04-15 09:28:51",
  3595. "name": "jenkins",
  3596. "recommended": false,
  3597. "title": "Jenkins",
  3598. "maintainers": [
  3599. {
  3600. "name": "truenas",
  3601. "url": "https://www.truenas.com/",
  3602. "email": "dev@ixsystems.com"
  3603. }
  3604. ],
  3605. "tags": [
  3606. "automation",
  3607. "ci/cd"
  3608. ],
  3609. "screenshots": [
  3610. "https://media.sys.truenas.net/apps/jenkins/screenshots/screenshot1.png",
  3611. "https://media.sys.truenas.net/apps/jenkins/screenshots/screenshot2.png"
  3612. ],
  3613. "sources": [
  3614. "https://hub.docker.com/r/jenkins/jenkins",
  3615. "https://github.com/truenas/charts/tree/master/community/jenkins",
  3616. "https://github.com/jenkinsci/jenkins",
  3617. "https://www.jenkins.io/"
  3618. ],
  3619. "icon_url": "https://media.sys.truenas.net/apps/jenkins/icons/icon.svg"
  3620. },
  3621. "audiobookshelf": {
  3622. "app_readme": "<h1>Audiobookshelf</h1>\n<p><a href=\"https://www.audiobookshelf.org/\">Audiobookshelf</a> is a self-hosted audiobook and podcast server.</p>\n<blockquote>\n<p>The following applies only when the storage type is set to <strong>ixVolume</strong>\nWhen application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Audiobookshelf</code> directories.\nAfterward, the <code>Audiobookshelf</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  3623. "categories": [
  3624. "media"
  3625. ],
  3626. "description": "Audiobookshelf is a self-hosted audiobook and podcast server",
  3627. "healthy": true,
  3628. "healthy_error": null,
  3629. "home": "https://www.audiobookshelf.org/",
  3630. "location": "/__w/charts/charts/community/audiobookshelf",
  3631. "latest_version": "1.0.0",
  3632. "latest_app_version": "2.8.1",
  3633. "latest_human_version": "2.8.1_1.0.0",
  3634. "last_update": "2024-04-15 09:28:51",
  3635. "name": "audiobookshelf",
  3636. "recommended": false,
  3637. "title": "Audiobookshelf",
  3638. "maintainers": [
  3639. {
  3640. "name": "truenas",
  3641. "url": "https://www.truenas.com/",
  3642. "email": "dev@ixsystems.com"
  3643. }
  3644. ],
  3645. "tags": [
  3646. "audiobook"
  3647. ],
  3648. "screenshots": [
  3649. "https://media.sys.truenas.net/apps/audiobookshelf/screenshots/screenshot1.png",
  3650. "https://media.sys.truenas.net/apps/audiobookshelf/screenshots/screenshot2.png",
  3651. "https://media.sys.truenas.net/apps/audiobookshelf/screenshots/screenshot3.png",
  3652. "https://media.sys.truenas.net/apps/audiobookshelf/screenshots/screenshot4.jpg"
  3653. ],
  3654. "sources": [
  3655. "https://ghcr.io/advplyr/audiobookshelf",
  3656. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/audiobookshelf",
  3657. "https://github.com/advplyr/audiobookshelf"
  3658. ],
  3659. "icon_url": "https://media.sys.truenas.net/apps/audiobookshelf/icons/icon.svg"
  3660. },
  3661. "handbrake": {
  3662. "app_readme": "<h1>Handbrake</h1>\n<p><a href=\"https://github.com/jlesage/docker-handbrake\">Handbrake</a> is a tool for converting video from nearly any format to a selection of modern, widely supported codecs.</p>",
  3663. "categories": [
  3664. "media"
  3665. ],
  3666. "description": "HandBrake is a tool for converting video from nearly any format to a selection of modern, widely supported codecs.",
  3667. "healthy": true,
  3668. "healthy_error": null,
  3669. "home": "https://github.com/jlesage/docker-handbrake",
  3670. "location": "/__w/charts/charts/community/handbrake",
  3671. "latest_version": "1.0.2",
  3672. "latest_app_version": "23.12.2",
  3673. "latest_human_version": "23.12.2_1.0.2",
  3674. "last_update": "2024-04-15 09:28:51",
  3675. "name": "handbrake",
  3676. "recommended": false,
  3677. "title": "HandBrake",
  3678. "maintainers": [
  3679. {
  3680. "name": "truenas",
  3681. "url": "https://www.truenas.com/",
  3682. "email": "dev@ixsystems.com"
  3683. }
  3684. ],
  3685. "tags": [
  3686. "media",
  3687. "video",
  3688. "transcoder"
  3689. ],
  3690. "screenshots": [],
  3691. "sources": [
  3692. "https://github.com/jlesage/docker-handbrake",
  3693. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/handbrake",
  3694. "https://hub.docker.com/r/jlesage/handbrake"
  3695. ],
  3696. "icon_url": "https://media.sys.truenas.net/apps/handbrake/icons/icon.png"
  3697. },
  3698. "lidarr": {
  3699. "app_readme": "<h1>Lidarr</h1>\n<p><a href=\"https://github.com/Lidarr/Lidarr\">Lidarr</a> is a music collection manager for Usenet and BitTorrent users.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Lidarr</code> directories.\nAfterward, the <code>Lidarr</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  3700. "categories": [
  3701. "media"
  3702. ],
  3703. "description": "Lidarr is a music collection manager for Usenet and BitTorrent users.",
  3704. "healthy": true,
  3705. "healthy_error": null,
  3706. "home": "https://github.com/Lidarr/Lidarr",
  3707. "location": "/__w/charts/charts/community/lidarr",
  3708. "latest_version": "1.2.20",
  3709. "latest_app_version": "2.2.5.4141",
  3710. "latest_human_version": "2.2.5.4141_1.2.20",
  3711. "last_update": "2024-04-15 09:30:16",
  3712. "name": "lidarr",
  3713. "recommended": false,
  3714. "title": "Lidarr",
  3715. "maintainers": [
  3716. {
  3717. "name": "truenas",
  3718. "url": "https://www.truenas.com/",
  3719. "email": "dev@ixsystems.com"
  3720. }
  3721. ],
  3722. "tags": [
  3723. "music"
  3724. ],
  3725. "screenshots": [
  3726. "https://media.sys.truenas.net/apps/lidarr/screenshots/screenshot1.png",
  3727. "https://media.sys.truenas.net/apps/lidarr/screenshots/screenshot2.png",
  3728. "https://media.sys.truenas.net/apps/lidarr/screenshots/screenshot3.png"
  3729. ],
  3730. "sources": [
  3731. "https://github.com/onedr0p/containers/tree/main/apps/lidarr",
  3732. "https://github.com/truenas/charts/tree/master/community/lidarr",
  3733. "https://github.com/Lidarr/Lidarr"
  3734. ],
  3735. "icon_url": "https://media.sys.truenas.net/apps/lidarr/icons/icon.png"
  3736. },
  3737. "tdarr": {
  3738. "app_readme": "<h1>Tdarr</h1>\n<p><a href=\"https://home.tdarr.io/\">Tdarr</a> is a Distributed Transcoding System</p>\n<ul>\n<li>App runs as <code>root</code> user</li>\n</ul>",
  3739. "categories": [
  3740. "media"
  3741. ],
  3742. "description": "Tdarr is a Distributed Transcoding System",
  3743. "healthy": true,
  3744. "healthy_error": null,
  3745. "home": "https://home.tdarr.io/",
  3746. "location": "/__w/charts/charts/community/tdarr",
  3747. "latest_version": "1.2.3",
  3748. "latest_app_version": "2.17.01",
  3749. "latest_human_version": "2.17.01_1.2.3",
  3750. "last_update": "2024-04-15 09:28:51",
  3751. "name": "tdarr",
  3752. "recommended": false,
  3753. "title": "Tdarr",
  3754. "maintainers": [
  3755. {
  3756. "name": "truenas",
  3757. "url": "https://www.truenas.com/",
  3758. "email": "dev@ixsystems.com"
  3759. }
  3760. ],
  3761. "tags": [
  3762. "encode",
  3763. "transcode"
  3764. ],
  3765. "screenshots": [
  3766. "https://home.tdarr.io/static/media/Stats2-min.a583d8ec.png",
  3767. "https://home.tdarr.io/static/media/Nodes-min.d8bf11b5.png",
  3768. "https://home.tdarr.io/static/media/VerdictHistory-min.444965ac.png"
  3769. ],
  3770. "sources": [
  3771. "https://home.tdarr.io/",
  3772. "https://github.com/truenas/charts/tree/master/community/tdarr",
  3773. "https://docs.tdarr.io/docs"
  3774. ],
  3775. "icon_url": "https://media.sys.truenas.net/apps/tdarr/icons/icon.png"
  3776. },
  3777. "piwigo": {
  3778. "app_readme": "<h1>Piwigo</h1>\n<p><a href=\"https://piwigo.org/\">Piwigo</a> is a photo gallery software for the web that comes with powerful features to\npublish and manage your collection of pictures.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>mariadb</code> directories.\nAfterwards <code>mariadb</code> will start as a <strong>non</strong>-root user (<code>999</code>).&gt;\nOn each upgrade, a container will be launched with <strong>root</strong> privileges in order to\napply the correct permissions to the <code>mariadb</code> <strong>backups</strong> directory.\nContainer that performs the backup will run as a <strong>non</strong>-root user (<code>999</code>) afterwards.\nKeep in mind the permissions on the backup directory will be changed to <code>999:999</code> on <strong>every</strong> update.\nBut will only be changed once for the <code>mariadb</code> data directories.</p>\n</blockquote>",
  3779. "categories": [
  3780. "media"
  3781. ],
  3782. "description": "Piwigo is a photo gallery software for the web that comes with powerful features to publish and manage your collection of pictures.",
  3783. "healthy": true,
  3784. "healthy_error": null,
  3785. "home": "https://piwigo.org",
  3786. "location": "/__w/charts/charts/community/piwigo",
  3787. "latest_version": "1.2.5",
  3788. "latest_app_version": "14.3.0",
  3789. "latest_human_version": "14.3.0_1.2.5",
  3790. "last_update": "2024-04-15 09:28:51",
  3791. "name": "piwigo",
  3792. "recommended": false,
  3793. "title": "Piwigo",
  3794. "maintainers": [
  3795. {
  3796. "name": "truenas",
  3797. "url": "https://www.truenas.com/",
  3798. "email": "dev@ixsystems.com"
  3799. }
  3800. ],
  3801. "tags": [
  3802. "photo",
  3803. "gallery"
  3804. ],
  3805. "screenshots": [
  3806. "https://media.sys.truenas.net/apps/piwigo/screenshots/screenshot1.png",
  3807. "https://media.sys.truenas.net/apps/piwigo/screenshots/screenshot2.png"
  3808. ],
  3809. "sources": [
  3810. "https://hub.docker.com/r/linuxserver/piwigo",
  3811. "https://github.com/truenas/charts/tree/master/community/piwigo"
  3812. ],
  3813. "icon_url": "https://media.sys.truenas.net/apps/piwigo/icons/icon.svg"
  3814. },
  3815. "dashy": {
  3816. "app_readme": "<h1>Dashy</h1>\n<p><a href=\"https://dashy.to/\">Dashy</a> is a self-hostable personal dashboard built for you.</p>",
  3817. "categories": [
  3818. "productivity"
  3819. ],
  3820. "description": "Dashy is a self-hostable personal dashboard built for you.",
  3821. "healthy": true,
  3822. "healthy_error": null,
  3823. "home": "https://dashy.to/",
  3824. "location": "/__w/charts/charts/community/dashy",
  3825. "latest_version": "1.0.9",
  3826. "latest_app_version": "2.1.2",
  3827. "latest_human_version": "2.1.2_1.0.9",
  3828. "last_update": "2024-04-15 09:28:51",
  3829. "name": "dashy",
  3830. "recommended": false,
  3831. "title": "Dashy",
  3832. "maintainers": [
  3833. {
  3834. "name": "truenas",
  3835. "url": "https://www.truenas.com/",
  3836. "email": "dev@ixsystems.com"
  3837. }
  3838. ],
  3839. "tags": [
  3840. "dashboard"
  3841. ],
  3842. "screenshots": [
  3843. "https://media.sys.truenas.net/apps/dashy/screenshots/screenshot1.gif",
  3844. "https://media.sys.truenas.net/apps/dashy/screenshots/screenshot2.gif"
  3845. ],
  3846. "sources": [
  3847. "https://dashy.to/",
  3848. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/dashy",
  3849. "https://github.com/lissy93/dashy"
  3850. ],
  3851. "icon_url": "https://media.sys.truenas.net/apps/dashy/icons/icon.png"
  3852. },
  3853. "autobrr": {
  3854. "app_readme": "<h1>Autobrr</h1>\n<p><a href=\"https://github.com/autobrr/autobrr\">Autobrr</a> is the modern download automation tool for torrents and usenet.</p>",
  3855. "categories": [
  3856. "media"
  3857. ],
  3858. "description": "Autobrr is the modern download automation tool for torrents and usenet.",
  3859. "healthy": true,
  3860. "healthy_error": null,
  3861. "home": "https://github.com/autobrr/autobrr",
  3862. "location": "/__w/charts/charts/community/autobrr",
  3863. "latest_version": "1.2.12",
  3864. "latest_app_version": "1.40.1",
  3865. "latest_human_version": "1.40.1_1.2.12",
  3866. "last_update": "2024-04-15 09:28:51",
  3867. "name": "autobrr",
  3868. "recommended": false,
  3869. "title": "Autobrr",
  3870. "maintainers": [
  3871. {
  3872. "name": "truenas",
  3873. "url": "https://www.truenas.com/",
  3874. "email": "dev@ixsystems.com"
  3875. }
  3876. ],
  3877. "tags": [
  3878. "torrent",
  3879. "usenet"
  3880. ],
  3881. "screenshots": [
  3882. "https://github.com/autobrr/autobrr/raw/develop/.github/images/autobrr-front.png"
  3883. ],
  3884. "sources": [
  3885. "https://autobrr.com/installation/docker",
  3886. "https://github.com/truenas/charts/tree/master/community/autobrr",
  3887. "https://github.com/autobrr/autobrr"
  3888. ],
  3889. "icon_url": "https://media.sys.truenas.net/apps/autobrr/icons/icon.png"
  3890. },
  3891. "plex-auto-languages": {
  3892. "app_readme": "<h1>Plex Auto Languages</h1>\n<p><a href=\"https://github.com/RemiRigal/Plex-Auto-Languages\">Plex Auto Languages</a> offer automated language selection for Plex TV Shows</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Plex Auto Languages</code> directories.\nAfterward, the <code>Plex Auto Languages</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  3893. "categories": [
  3894. "media"
  3895. ],
  3896. "description": "Plex Auto Languages offer automated language selection for Plex TV Shows",
  3897. "healthy": true,
  3898. "healthy_error": null,
  3899. "home": "https://github.com/RemiRigal/Plex-Auto-Languages",
  3900. "location": "/__w/charts/charts/community/plex-auto-languages",
  3901. "latest_version": "1.2.4",
  3902. "latest_app_version": "1.2.3",
  3903. "latest_human_version": "1.2.3_1.2.4",
  3904. "last_update": "2024-04-15 09:28:51",
  3905. "name": "plex-auto-languages",
  3906. "recommended": false,
  3907. "title": "Plex Auto Languages",
  3908. "maintainers": [
  3909. {
  3910. "name": "truenas",
  3911. "url": "https://www.truenas.com/",
  3912. "email": "dev@ixsystems.com"
  3913. }
  3914. ],
  3915. "tags": [
  3916. "plex",
  3917. "languages"
  3918. ],
  3919. "screenshots": [],
  3920. "sources": [
  3921. "https://github.com/RemiRigal/Plex-Auto-Languages",
  3922. "https://github.com/truenas/charts/tree/master/community/plex-auto-languages",
  3923. "https://hub.docker.com/r/remirigal/plex-auto-languages"
  3924. ],
  3925. "icon_url": "https://localhost/no-icon"
  3926. },
  3927. "frigate": {
  3928. "app_readme": "<h1>Frigate</h1>\n<p><a href=\"https://github.com/frigate/frigate\">Frigate</a> is an NVR With Realtime Object Detection for IP Cameras</p>\n<blockquote>\n<p>Note: <strong>m.2</strong> Coral TPU devices is not supported.</p>\n</blockquote>",
  3929. "categories": [
  3930. "security"
  3931. ],
  3932. "description": "Frigate is an NVR With Realtime Object Detection for IP Cameras",
  3933. "healthy": true,
  3934. "healthy_error": null,
  3935. "home": "https://github.com/blakeblackshear/frigate",
  3936. "location": "/__w/charts/charts/community/frigate",
  3937. "latest_version": "1.2.6",
  3938. "latest_app_version": "0.13.2",
  3939. "latest_human_version": "0.13.2_1.2.6",
  3940. "last_update": "2024-04-15 09:28:51",
  3941. "name": "frigate",
  3942. "recommended": false,
  3943. "title": "Frigate",
  3944. "maintainers": [
  3945. {
  3946. "name": "truenas",
  3947. "url": "https://www.truenas.com/",
  3948. "email": "dev@ixsystems.com"
  3949. }
  3950. ],
  3951. "tags": [
  3952. "camera",
  3953. "nvr"
  3954. ],
  3955. "screenshots": [
  3956. "https://media.sys.truenas.net/apps/frigate/screenshots/screenshot1.png",
  3957. "https://media.sys.truenas.net/apps/frigate/screenshots/screenshot2.png",
  3958. "https://media.sys.truenas.net/apps/frigate/screenshots/screenshot3.png"
  3959. ],
  3960. "sources": [
  3961. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/frigate",
  3962. "https://github.com/blakeblackshear/frigate"
  3963. ],
  3964. "icon_url": "https://media.sys.truenas.net/apps/frigate/icons/icon.svg"
  3965. },
  3966. "transmission": {
  3967. "app_readme": "<h1>Transmission</h1>\n<p><a href=\"https://transmissionbt.com/\">Transmission</a> is designed for easy, powerful use.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the Transmission directories.\nAfterward, the <code>Transmission</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).</p>\n</blockquote>\n<p>For additional configuration via environment variables, see <a href=\"https://github.com/onedr0p/containers/tree/main/apps/transmission\">Container's source env var list</a>.</p>",
  3968. "categories": [
  3969. "media"
  3970. ],
  3971. "description": "Transmission is designed for easy, powerful use.",
  3972. "healthy": true,
  3973. "healthy_error": null,
  3974. "home": "https://transmissionbt.com/",
  3975. "location": "/__w/charts/charts/community/transmission",
  3976. "latest_version": "1.3.5",
  3977. "latest_app_version": "4.0.5",
  3978. "latest_human_version": "4.0.5_1.3.5",
  3979. "last_update": "2024-04-15 09:28:51",
  3980. "name": "transmission",
  3981. "recommended": false,
  3982. "title": "Transmission",
  3983. "maintainers": [
  3984. {
  3985. "name": "truenas",
  3986. "url": "https://www.truenas.com/",
  3987. "email": "dev@ixsystems.com"
  3988. }
  3989. ],
  3990. "tags": [
  3991. "torrent",
  3992. "download"
  3993. ],
  3994. "screenshots": [],
  3995. "sources": [
  3996. "https://github.com/onedr0p/containers/tree/main/apps/transmission",
  3997. "https://github.com/truenas/charts/tree/master/community/transmission",
  3998. "https://transmissionbt.com/"
  3999. ],
  4000. "icon_url": "https://media.sys.truenas.net/apps/transmission/icons/icon.png"
  4001. },
  4002. "kapowarr": {
  4003. "app_readme": "<h1>Kapowarr</h1>\n<p><a href=\"https://casvt.github.io/Kapowarr/\">Kapowarr</a> is a software to build and manage a comic book library, fitting in the *arr suite of software.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Kapowarr</code> directories.\nAfterward, the <code>Kapowarr</code> container will run as a <strong>non</strong>-root user (Default: <code>568</code>).\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match the configured user.</p>\n</blockquote>",
  4004. "categories": [
  4005. "media"
  4006. ],
  4007. "description": "Kapowarr is a software to build and manage a comic book library, fitting in the *arr suite of software.",
  4008. "healthy": true,
  4009. "healthy_error": null,
  4010. "home": "https://casvt.github.io/Kapowarr/",
  4011. "location": "/__w/charts/charts/community/kapowarr",
  4012. "latest_version": "2.0.3",
  4013. "latest_app_version": "1.0.0",
  4014. "latest_human_version": "1.0.0_2.0.3",
  4015. "last_update": "2024-04-15 09:28:51",
  4016. "name": "kapowarr",
  4017. "recommended": false,
  4018. "title": "Kapowarr",
  4019. "maintainers": [
  4020. {
  4021. "name": "truenas",
  4022. "url": "https://www.truenas.com/",
  4023. "email": "dev@ixsystems.com"
  4024. }
  4025. ],
  4026. "tags": [
  4027. "comic"
  4028. ],
  4029. "screenshots": [
  4030. "https://media.sys.truenas.net/apps/kapowarr/screenshots/screenshot1.png",
  4031. "https://media.sys.truenas.net/apps/kapowarr/screenshots/screenshot2.png"
  4032. ],
  4033. "sources": [
  4034. "https://hub.docker.com/r/mrcas/kapowarr",
  4035. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/kapowarr",
  4036. "https://github.com/Casvt/Kapowarr"
  4037. ],
  4038. "icon_url": "https://media.sys.truenas.net/apps/kapowarr/icons/icon.svg"
  4039. },
  4040. "navidrome": {
  4041. "app_readme": "<h1>Navidrome</h1>\n<p><a href=\"https://www.navidrome.org/\">Navidrome</a> is a personal streaming service</p>\n<p>Additional configuration options can be defined via environment variables.\nSee more information on the <a href=\"https://www.navidrome.org/docs/usage/configuration-options\">Navidrome Documentation</a></p>",
  4042. "categories": [
  4043. "media"
  4044. ],
  4045. "description": "Navidrome is a personal streaming service",
  4046. "healthy": true,
  4047. "healthy_error": null,
  4048. "home": "https://www.navidrome.org/",
  4049. "location": "/__w/charts/charts/community/navidrome",
  4050. "latest_version": "1.2.6",
  4051. "latest_app_version": "0.51.1",
  4052. "latest_human_version": "0.51.1_1.2.6",
  4053. "last_update": "2024-04-15 09:28:51",
  4054. "name": "navidrome",
  4055. "recommended": false,
  4056. "title": "Navidrome",
  4057. "maintainers": [
  4058. {
  4059. "name": "truenas",
  4060. "url": "https://www.truenas.com/",
  4061. "email": "dev@ixsystems.com"
  4062. }
  4063. ],
  4064. "tags": [
  4065. "music"
  4066. ],
  4067. "screenshots": [
  4068. "https://media.sys.truenas.net/apps/navidrome/screenshots/screenshot1.png"
  4069. ],
  4070. "sources": [
  4071. "https://hub.docker.com/r/deluan/navidrome",
  4072. "https://github.com/truenas/charts/tree/master/community/navidrome",
  4073. "https://github.com/navidrome/navidrome/"
  4074. ],
  4075. "icon_url": "https://media.sys.truenas.net/apps/navidrome/icons/icon.png"
  4076. },
  4077. "passbolt": {
  4078. "app_readme": "<h1>Passbolt</h1>\n<p><a href=\"https://www.passbolt.com\">Passbolt</a> is a security-first, open source password manager</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Passbolt</code> directories.\nAfterward, the <code>Passbolt</code> container will run as a <strong>non</strong>-root user (<code>33</code>).\nSame applies to the <code>mariadb</code> container. This will run afterwards as a <strong>non</strong>-root user (<code>999</code>).\nOn each upgrade, a container will be launched with <strong>root</strong> privileges in order to apply the correct\npermissions to the <code>mariadb</code> <strong>backups</strong> directory. Container that performs the backup will run as a <strong>non</strong>-root user (<code>999</code>) afterwards.\nKeep in mind the permissions on the backup directory will be changed to <code>999:999</code> on <strong>every</strong> update.\nBut will only be changed once for the <code>Passbolt</code> and <code>mariadb</code> data directories.</p>\n</blockquote>\n<h2>Register admin user</h2>\n<p>Connect to the container's shell and run the following command replacing the\nvalues (<code>user@example.com</code>, <code>first_name</code>, <code>last_name</code>) with your own values.</p>\n<p><code>shell\n/usr/share/php/passbolt/bin/cake passbolt register_user -r admin \\\n -u user@example.com -f first_name -l last_name</code></p>",
  4079. "categories": [
  4080. "security"
  4081. ],
  4082. "description": "Passbolt is a security-first, open source password manager",
  4083. "healthy": true,
  4084. "healthy_error": null,
  4085. "home": "https://www.passbolt.com",
  4086. "location": "/__w/charts/charts/community/passbolt",
  4087. "latest_version": "1.2.8",
  4088. "latest_app_version": "4.6.2.1",
  4089. "latest_human_version": "4.6.2.1_1.2.8",
  4090. "last_update": "2024-04-15 09:28:51",
  4091. "name": "passbolt",
  4092. "recommended": false,
  4093. "title": "Passbolt",
  4094. "maintainers": [
  4095. {
  4096. "name": "truenas",
  4097. "url": "https://www.truenas.com/",
  4098. "email": "dev@ixsystems.com"
  4099. }
  4100. ],
  4101. "tags": [
  4102. "password",
  4103. "manager"
  4104. ],
  4105. "screenshots": [
  4106. "https://media.sys.truenas.net/apps/passbolt/screenshots/screenshot1.png",
  4107. "https://media.sys.truenas.net/apps/passbolt/screenshots/screenshot2.png",
  4108. "https://media.sys.truenas.net/apps/passbolt/screenshots/screenshot3.png",
  4109. "https://media.sys.truenas.net/apps/passbolt/screenshots/screenshot4.png"
  4110. ],
  4111. "sources": [
  4112. "https://hub.docker.com/r/passbolt/passbolt",
  4113. "https://github.com/truenas/charts/tree/master/community/passbolt",
  4114. "https://www.passbolt.com"
  4115. ],
  4116. "icon_url": "https://media.sys.truenas.net/apps/passbolt/icon/icon.svg"
  4117. },
  4118. "actual-budget": {
  4119. "app_readme": "<h1>Actual Budget</h1>\n<p><a href=\"https://actualbudget.org/\">Actual Budget</a> is a super fast and privacy-focused app for managing your finances.</p>",
  4120. "categories": [
  4121. "productivity"
  4122. ],
  4123. "description": "Actual Budget is a super fast and privacy-focused app for managing your finances.",
  4124. "healthy": true,
  4125. "healthy_error": null,
  4126. "home": "https://actualbudget.org/",
  4127. "location": "/__w/charts/charts/community/actual-budget",
  4128. "latest_version": "1.2.12",
  4129. "latest_app_version": "24.4.0",
  4130. "latest_human_version": "24.4.0_1.2.12",
  4131. "last_update": "2024-04-15 09:28:51",
  4132. "name": "actual-budget",
  4133. "recommended": false,
  4134. "title": "Actual Budget",
  4135. "maintainers": [
  4136. {
  4137. "name": "truenas",
  4138. "url": "https://www.truenas.com/",
  4139. "email": "dev@ixsystems.com"
  4140. }
  4141. ],
  4142. "tags": [
  4143. "finance",
  4144. "budget"
  4145. ],
  4146. "screenshots": [
  4147. "https://media.sys.truenas.net/apps/actual-budget/screenshots/screenshot1.png",
  4148. "https://media.sys.truenas.net/apps/actual-budget/screenshots/screenshot2.png",
  4149. "https://media.sys.truenas.net/apps/actual-budget/screenshots/screenshot3.png"
  4150. ],
  4151. "sources": [
  4152. "https://github.com/actualbudget/actual-server",
  4153. "https://github.com/truenas/charts/tree/master/community/actual-budget",
  4154. "https://hub.docker.com/r/actualbudget/actual-server"
  4155. ],
  4156. "icon_url": "https://media.sys.truenas.net/apps/actual-budget/icons/icon.png"
  4157. },
  4158. "grafana": {
  4159. "app_readme": "<h1>Grafana</h1>\n<p><a href=\"https://grafana.com/\">Grafana</a> is the open source analytics &amp; monitoring solution for every database.</p>\n<p>Additional configuration can be made by adding additional environment variables\nHere is the available <a href=\"https://grafana.com/docs/grafana/latest/setup-grafana/configure-grafana/\">configuration documentation</a></p>\n<p>Use the following syntax:\n<code>GF_[SECTION-NAME]_[KEY-NAME]</code></p>\n<p>Example:\n<code>GF_SMTP_ENABLED</code></p>",
  4160. "categories": [
  4161. "productivity"
  4162. ],
  4163. "description": "Grafana is the open source analytics & monitoring solution for every database.",
  4164. "healthy": true,
  4165. "healthy_error": null,
  4166. "home": "https://grafana.com",
  4167. "location": "/__w/charts/charts/community/grafana",
  4168. "latest_version": "1.2.12",
  4169. "latest_app_version": "10.4.2",
  4170. "latest_human_version": "10.4.2_1.2.12",
  4171. "last_update": "2024-04-15 09:28:51",
  4172. "name": "grafana",
  4173. "recommended": false,
  4174. "title": "Grafana",
  4175. "maintainers": [
  4176. {
  4177. "name": "truenas",
  4178. "url": "https://www.truenas.com/",
  4179. "email": "dev@ixsystems.com"
  4180. }
  4181. ],
  4182. "tags": [
  4183. "analytics",
  4184. "monitoring",
  4185. "metrics",
  4186. "dashboards"
  4187. ],
  4188. "screenshots": [
  4189. "https://media.sys.truenas.net/apps/grafana/screenshots/screenshot1.png",
  4190. "https://media.sys.truenas.net/apps/grafana/screenshots/screenshot2.png"
  4191. ],
  4192. "sources": [
  4193. "https://hub.docker.com/r/grafana/grafana",
  4194. "https://github.com/truenas/charts/tree/master/community/grafana",
  4195. "https://github.com/grafana"
  4196. ],
  4197. "icon_url": "https://media.sys.truenas.net/apps/grafana/icons/icon.png"
  4198. },
  4199. "paperless-ngx": {
  4200. "app_readme": "<h1>Paperless-ngx</h1>\n<p><a href=\"https://docs.paperless-ngx.com\">Paperless-ngx</a> is a document management system that transforms your physical documents into a searchable online archive so you can keep, well, less paper.</p>",
  4201. "categories": [
  4202. "productivity"
  4203. ],
  4204. "description": "Paperless-ngx is a document management system that transforms your physical documents into a searchable online archive so you can keep, well, less paper.",
  4205. "healthy": true,
  4206. "healthy_error": null,
  4207. "home": "https://docs.paperless-ngx.com",
  4208. "location": "/__w/charts/charts/community/paperless-ngx",
  4209. "latest_version": "1.2.34",
  4210. "latest_app_version": "2.7.2",
  4211. "latest_human_version": "2.7.2_1.2.34",
  4212. "last_update": "2024-04-15 09:28:51",
  4213. "name": "paperless-ngx",
  4214. "recommended": false,
  4215. "title": "Paperless-ngx",
  4216. "maintainers": [
  4217. {
  4218. "name": "truenas",
  4219. "url": "https://www.truenas.com/",
  4220. "email": "dev@ixsystems.com"
  4221. }
  4222. ],
  4223. "tags": [
  4224. "document",
  4225. "management"
  4226. ],
  4227. "screenshots": [
  4228. "https://media.sys.truenas.net/apps/paperless-ngx/screenshots/screenshot1.png",
  4229. "https://media.sys.truenas.net/apps/paperless-ngx/screenshots/screenshot2.png",
  4230. "https://media.sys.truenas.net/apps/paperless-ngx/screenshots/screenshot3.png",
  4231. "https://media.sys.truenas.net/apps/paperless-ngx/screenshots/screenshot4.png",
  4232. "https://media.sys.truenas.net/apps/paperless-ngx/screenshots/screenshot5.png",
  4233. "https://media.sys.truenas.net/apps/paperless-ngx/screenshots/screenshot6.png",
  4234. "https://media.sys.truenas.net/apps/paperless-ngx/screenshots/screenshot7.png",
  4235. "https://media.sys.truenas.net/apps/paperless-ngx/screenshots/screenshot8.png"
  4236. ],
  4237. "sources": [
  4238. "https://hub.docker.com/r/paperlessngx/paperless-ngx",
  4239. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/paperless-ngx",
  4240. "https://github.com/paperless-ngx/paperless-ngx"
  4241. ],
  4242. "icon_url": "https://media.sys.truenas.net/apps/paperless-ngx/icons/icon.svg"
  4243. },
  4244. "drawio": {
  4245. "app_readme": "<h1>Draw.io</h1>\n<p><a href=\"https://www.drawio.com\">Draw.io</a> is a whiteboarding / diagramming software application.</p>",
  4246. "categories": [
  4247. "productivity"
  4248. ],
  4249. "description": "Draw.io is a whiteboarding / diagramming software application.",
  4250. "healthy": true,
  4251. "healthy_error": null,
  4252. "home": "https://www.drawio.com",
  4253. "location": "/__w/charts/charts/community/drawio",
  4254. "latest_version": "1.2.32",
  4255. "latest_app_version": "24.2.5",
  4256. "latest_human_version": "24.2.5_1.2.32",
  4257. "last_update": "2024-04-15 09:28:51",
  4258. "name": "drawio",
  4259. "recommended": false,
  4260. "title": "Draw.IO",
  4261. "maintainers": [
  4262. {
  4263. "name": "truenas",
  4264. "url": "https://www.truenas.com/",
  4265. "email": "dev@ixsystems.com"
  4266. }
  4267. ],
  4268. "tags": [
  4269. "diagram",
  4270. "whiteboard"
  4271. ],
  4272. "screenshots": [
  4273. "https://media.sys.truenas.net/apps/drawio/screenshots/screenshot1.png",
  4274. "https://media.sys.truenas.net/apps/drawio/screenshots/screenshot2.png",
  4275. "https://media.sys.truenas.net/apps/drawio/screenshots/screenshot3.png"
  4276. ],
  4277. "sources": [
  4278. "https://hub.docker.com/r/jgraph/drawio",
  4279. "https://github.com/truenas/charts/tree/master/library/ix-dev/community/drawio",
  4280. "https://github.com/jgraph/drawio"
  4281. ],
  4282. "icon_url": "https://media.sys.truenas.net/apps/drawio/icons/icon.png"
  4283. },
  4284. "prowlarr": {
  4285. "app_readme": "<h1>Prowlarr</h1>\n<p><a href=\"https://github.com/Prowlarr/Prowlarr\">Prowlarr</a> is a music collection manager for Usenet and BitTorrent users.</p>",
  4286. "categories": [
  4287. "media"
  4288. ],
  4289. "description": "Prowlarr is an indexer manager/proxy to integrate with your various PVR apps.",
  4290. "healthy": true,
  4291. "healthy_error": null,
  4292. "home": "https://prowlarr.com/",
  4293. "location": "/__w/charts/charts/community/prowlarr",
  4294. "latest_version": "1.2.22",
  4295. "latest_app_version": "1.16.1.4420",
  4296. "latest_human_version": "1.16.1.4420_1.2.22",
  4297. "last_update": "2024-04-15 09:30:16",
  4298. "name": "prowlarr",
  4299. "recommended": false,
  4300. "title": "Prowlarr",
  4301. "maintainers": [
  4302. {
  4303. "name": "truenas",
  4304. "url": "https://www.truenas.com/",
  4305. "email": "dev@ixsystems.com"
  4306. }
  4307. ],
  4308. "tags": [
  4309. "indexer"
  4310. ],
  4311. "screenshots": [],
  4312. "sources": [
  4313. "https://github.com/onedr0p/containers/tree/main/apps/prowlarr",
  4314. "https://github.com/truenas/charts/tree/master/community/prowlarr",
  4315. "https://github.com/Prowlarr/Prowlarr"
  4316. ],
  4317. "icon_url": "https://media.sys.truenas.net/apps/prowlarr/icons/icon.png"
  4318. },
  4319. "castopod": {
  4320. "app_readme": "<h1>Castopod</h1>\n<p><a href=\"https://castopod.org\">Castopod</a> is an open-source hosting platform made for podcasters who want engage and interact with their audience.</p>",
  4321. "categories": [
  4322. "media"
  4323. ],
  4324. "description": "Castopod is an open-source hosting platform made for podcasters who want engage and interact with their audience.",
  4325. "healthy": true,
  4326. "healthy_error": null,
  4327. "home": "https://castopod.org",
  4328. "location": "/__w/charts/charts/community/castopod",
  4329. "latest_version": "1.2.16",
  4330. "latest_app_version": "1.10.5",
  4331. "latest_human_version": "1.10.5_1.2.16",
  4332. "last_update": "2024-04-15 09:28:51",
  4333. "name": "castopod",
  4334. "recommended": false,
  4335. "title": "Castopod",
  4336. "maintainers": [
  4337. {
  4338. "name": "truenas",
  4339. "url": "https://www.truenas.com/",
  4340. "email": "dev@ixsystems.com"
  4341. }
  4342. ],
  4343. "tags": [
  4344. "podcast"
  4345. ],
  4346. "screenshots": [
  4347. "https://media.sys.truenas.net/apps/castopod/screenshots/screenshot1.png"
  4348. ],
  4349. "sources": [
  4350. "https://hub.docker.com/r/castopod/castopod",
  4351. "https://github.com/truenas/charts/tree/master/community/castopod",
  4352. "https://code.castopod.org/adaures/castopod"
  4353. ],
  4354. "icon_url": "https://media.sys.truenas.net/apps/castopod/icons/icon.svg"
  4355. },
  4356. "redis": {
  4357. "app_readme": "<h1>Redis</h1>\n<p><a href=\"https://redis.io/\">Redis</a>. The open source, in-memory data store used by millions of developers as a database, cache, streaming engine, and message broker.</p>\n<blockquote>\n<p>When application is installed, a container will be launched with <strong>root</strong> privileges.\nThis is required in order to apply the correct permissions to the <code>Redis</code> directories.\nAfterward, the <code>Redis</code> container will run as a <strong>non</strong>-root user (<code>1001</code>) and root group.\nAll mounted storage(s) will be <code>chown</code>ed only if the parent directory does not match <code>1001</code> user.</p>\n</blockquote>",
  4358. "categories": [
  4359. "database"
  4360. ],
  4361. "description": "Redis. The open source, in-memory data store used by millions of developers as a database, cache, streaming engine, and message broker.",
  4362. "healthy": true,
  4363. "healthy_error": null,
  4364. "home": "https://redis.io/",
  4365. "location": "/__w/charts/charts/community/redis",
  4366. "latest_version": "1.0.22",
  4367. "latest_app_version": "7.2.4",
  4368. "latest_human_version": "7.2.4_1.0.22",
  4369. "last_update": "2024-04-15 09:28:51",
  4370. "name": "redis",
  4371. "recommended": false,
  4372. "title": "Redis",
  4373. "maintainers": [
  4374. {
  4375. "name": "truenas",
  4376. "url": "https://www.truenas.com/",
  4377. "email": "dev@ixsystems.com"
  4378. }
  4379. ],
  4380. "tags": [
  4381. "cache"
  4382. ],
  4383. "screenshots": [],
  4384. "sources": [
  4385. "https://hub.docker.com/r/bitnami/redis",
  4386. "https://github.com/bitnami/containers/tree/main/bitnami/redis",
  4387. "https://redis.io/"
  4388. ],
  4389. "icon_url": "https://media.sys.truenas.net/apps/redis/icons/icon.png"
  4390. }
  4391. }
  4392. }