refactor(readme-generator): display apps in table format (#3430)
* refactor(readme-generator): display apps as table * refactor(reamde-generator): use height auto and remove rounded corners * refactor(readme-generator): join app name and source * chore: unlock prettier version --------- Co-authored-by: Nicolas Meienberger <47644445+meienberger@users.noreply.github.com> Co-authored-by: Nicolas Meienberger <github@thisprops.com>
This commit is contained in:
		
							parent
							
								
									e66723db4a
								
							
						
					
					
						commit
						3b2e484530
					
				
							
								
								
									
										34
									
								
								.github/scripts/readme-generator.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										34
									
								
								.github/scripts/readme-generator.ts
									
									
									
									
										vendored
									
									
								
							|  | @ -1,16 +1,20 @@ | ||||||
|  | import { exec } from "child_process"; | ||||||
| import fs from "fs"; | import fs from "fs"; | ||||||
|  | import { stderr, stdout } from "process"; | ||||||
| 
 | 
 | ||||||
| type App = { | type App = { | ||||||
|  |   id: string; | ||||||
|   name: string; |   name: string; | ||||||
|   description: string; |   description: string; | ||||||
|   link: string; |   source: string; | ||||||
|  |   port: number; | ||||||
| }; | }; | ||||||
| 
 | 
 | ||||||
| const getAppsList = async () => { | const getAppsList = async () => { | ||||||
|   const apps: Record<string, App> = {}; |   const apps: Record<string, App> = {}; | ||||||
|   // fetch apps from app store repo
 |   // fetch apps from app store repo
 | ||||||
|   const res = await fetch( |   const res = await fetch( | ||||||
|     "https://api.github.com/repos/runtipi/runtipi-appstore/contents/apps" |     "https://api.github.com/repos/runtipi/runtipi-appstore/contents/apps", | ||||||
|   ); |   ); | ||||||
| 
 | 
 | ||||||
|   const data = await res.json(); |   const data = await res.json(); | ||||||
|  | @ -18,7 +22,7 @@ const getAppsList = async () => { | ||||||
| 
 | 
 | ||||||
|   for (const app of appNames) { |   for (const app of appNames) { | ||||||
|     const config = await fetch( |     const config = await fetch( | ||||||
|       `https://raw.githubusercontent.com/runtipi/runtipi-appstore/master/apps/${app}/config.json` |       `https://raw.githubusercontent.com/runtipi/runtipi-appstore/master/apps/${app}/config.json`, | ||||||
|     ); |     ); | ||||||
|     const appConfig = await config.text(); |     const appConfig = await config.text(); | ||||||
|     try { |     try { | ||||||
|  | @ -26,9 +30,11 @@ const getAppsList = async () => { | ||||||
| 
 | 
 | ||||||
|       if (!appConfigJson.deprecated) { |       if (!appConfigJson.deprecated) { | ||||||
|         apps[app] = { |         apps[app] = { | ||||||
|  |           id: appConfigJson.id, | ||||||
|           name: appConfigJson.name, |           name: appConfigJson.name, | ||||||
|           description: appConfigJson.short_desc, |           description: appConfigJson.short_desc, | ||||||
|           link: appConfigJson.source, |           source: appConfigJson.source, | ||||||
|  |           port: appConfigJson.port, | ||||||
|         }; |         }; | ||||||
|       } |       } | ||||||
|     } catch (e) { |     } catch (e) { | ||||||
|  | @ -39,14 +45,14 @@ const getAppsList = async () => { | ||||||
|   return { apps }; |   return { apps }; | ||||||
| }; | }; | ||||||
| 
 | 
 | ||||||
| const appToReadme = async (app) => { | const appToReadme = async (app: App) => { | ||||||
|   return `- [${app.name}](${app.link}) - ${app.description}`; |   return `| <img src="apps/${app.id}/metadata/logo.jpg" height="auto" width=50> | [${app.name}](${app.source}) | ${app.description} | ${app.port} |`; | ||||||
| }; | }; | ||||||
| 
 | 
 | ||||||
| const writeToReadme = (appsList) => { | const writeToReadme = (appsList: string) => { | ||||||
|   const baseReadme = fs.readFileSync( |   const baseReadme = fs.readFileSync( | ||||||
|     __dirname + "/../../templates/README.md", |     __dirname + "/../../templates/README.md", | ||||||
|     "utf8" |     "utf8", | ||||||
|   ); |   ); | ||||||
|   const finalReadme = baseReadme.replace("<!appsList>", appsList); |   const finalReadme = baseReadme.replace("<!appsList>", appsList); | ||||||
|   fs.writeFileSync(__dirname + "/../../README.md", finalReadme); |   fs.writeFileSync(__dirname + "/../../README.md", finalReadme); | ||||||
|  | @ -59,10 +65,20 @@ const main = async () => { | ||||||
| 
 | 
 | ||||||
|   for (let i = 0; i < appKeys.length; i++) { |   for (let i = 0; i < appKeys.length; i++) { | ||||||
|     const appFinal = await appToReadme(apps["apps"][appKeys[i]]); |     const appFinal = await appToReadme(apps["apps"][appKeys[i]]); | ||||||
|     appsList += i == 0 ? appFinal : "\n" + appFinal; |     appsList = appsList + (appFinal + "\n"); | ||||||
|   } |   } | ||||||
| 
 | 
 | ||||||
|   writeToReadme(appsList); |   writeToReadme(appsList); | ||||||
|  |   exec( | ||||||
|  |     `npx prettier ${__dirname + "/../../README.md"} --write`, | ||||||
|  |     (stdout, stderr) => { | ||||||
|  |       if (stderr) { | ||||||
|  |         console.error(stderr); | ||||||
|  |       } else if (stdout) { | ||||||
|  |         console.log(stdout); | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |   ); | ||||||
| }; | }; | ||||||
| 
 | 
 | ||||||
| main(); | main(); | ||||||
|  |  | ||||||
							
								
								
									
										3
									
								
								.prettierignore
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								.prettierignore
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,3 @@ | ||||||
|  | templates/* | ||||||
|  | node_modules/* | ||||||
|  | 
 | ||||||
							
								
								
									
										1
									
								
								.prettierrc
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								.prettierrc
									
									
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1 @@ | ||||||
|  | {} | ||||||
							
								
								
									
										455
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										455
									
								
								README.md
									
									
									
									
									
								
							|  | @ -4,231 +4,236 @@ This is the official repository for the Tipi App Store. It contains all the apps | ||||||
| 
 | 
 | ||||||
| ## Apps available | ## Apps available | ||||||
| 
 | 
 | ||||||
| - [2FAuth](https://github.com/Bubka/2FAuth) - Manage your Two-Factor Authentication codes. | | Icon                                                                                | Name                                                                           | Description                                                                                                                                                         | Port  | | ||||||
| - [Activepieces](https://github.com/activepieces/activepieces) - True zapier alternative. | | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----- | | ||||||
| - [Actual Budget](https://github.com/actualbudget/actual-server) - Local-first OpenSource Budget tool | | <img src="apps/2fauth/metadata/logo.jpg" height="auto" width=50>                    | [2FAuth](https://github.com/Bubka/2FAuth)                                      | Manage your Two-Factor Authentication codes.                                                                                                                        | 8235  | | ||||||
| - [Adguard](https://github.com/AdguardTeam) - World's most advanced adblocker! | | <img src="apps/activepieces/metadata/logo.jpg" height="auto" width=50>              | [Activepieces](https://github.com/activepieces/activepieces)                   | True zapier alternative.                                                                                                                                            | 8605  | | ||||||
| - [AFFiNE](https://github.com/toeverything/affine) - AFFiNE is a workspace with fully merged docs, whiteboards and databases. | | <img src="apps/actual-budget/metadata/logo.jpg" height="auto" width=50>             | [Actual Budget](https://github.com/actualbudget/actual-server)                 | Local-first OpenSource Budget tool                                                                                                                                  | 8011  | | ||||||
| - [Anse](https://github.com/anse-app/anse) - Fully optimized UI for AI Chats. | | <img src="apps/adguard/metadata/logo.jpg" height="auto" width=50>                   | [Adguard](https://github.com/AdguardTeam)                                      | World's most advanced adblocker!                                                                                                                                    | 8104  | | ||||||
| - [ArchiveBox](https://github.com/ArchiveBox/ArchiveBox) - Open source self-hosted web archiving. | | <img src="apps/affine/metadata/logo.jpg" height="auto" width=50>                    | [AFFiNE](https://github.com/toeverything/affine)                               | AFFiNE is a workspace with fully merged docs, whiteboards and databases.                                                                                            | 3010  | | ||||||
| - [Atuin Server](https://github.com/atuinsh/atuin) - Magical Shell History | | <img src="apps/anse/metadata/logo.jpg" height="auto" width=50>                      | [Anse](https://github.com/anse-app/anse)                                       | Fully optimized UI for AI Chats.                                                                                                                                    | 8014  | | ||||||
| - [Audiobookshelf](https://github.com/advplyr/audiobookshelf) - Audiobookshelf is a self-hosted audiobook and podcast server. | | <img src="apps/archivebox/metadata/logo.jpg" height="auto" width=50>                | [ArchiveBox](https://github.com/ArchiveBox/ArchiveBox)                         | Open source self-hosted web archiving.                                                                                                                              | 8015  | | ||||||
| - [Authentik](https://github.com/goauthentik/authentik) - The authentication glue you need. | | <img src="apps/atuin/metadata/logo.jpg" height="auto" width=50>                     | [Atuin Server](https://github.com/atuinsh/atuin)                               | Magical Shell History                                                                                                                                               | 8888  | | ||||||
| - [autobrr](https://github.com/autobrr/autobrr) - Automation for downloads. | | <img src="apps/audiobookshelf/metadata/logo.jpg" height="auto" width=50>            | [Audiobookshelf](https://github.com/advplyr/audiobookshelf)                    | Audiobookshelf is a self-hosted audiobook and podcast server.                                                                                                       | 13378 | | ||||||
| - [Baïkal](https://github.com/ckulka/baikal-docker) - Baïkal is a Calendar+Contacts server | | <img src="apps/authentik/metadata/logo.jpg" height="auto" width=50>                 | [Authentik](https://github.com/goauthentik/authentik)                          | The authentication glue you need.                                                                                                                                   | 8770  | | ||||||
| - [Barrage](https://github.com/maulik9898/barrage) - Minimal Deluge WebUI with full mobile support | | <img src="apps/autobrr/metadata/logo.jpg" height="auto" width=50>                   | [autobrr](https://github.com/autobrr/autobrr)                                  | Automation for downloads.                                                                                                                                           | 8158  | | ||||||
| - [Bazarr](https://github.com/morpheus65535/bazarr) - A companion application to Sonarr and Radarr that manages and downloads subtitles | | <img src="apps/baikal/metadata/logo.jpg" height="auto" width=50>                    | [Baïkal](https://github.com/ckulka/baikal-docker)                              | Baïkal is a Calendar+Contacts server                                                                                                                                | 6556  | | ||||||
| - [Bitcoin](https://github.com/lncm/docker-bitcoind) - Bitcoin core node | | <img src="apps/barrage/metadata/logo.jpg" height="auto" width=50>                   | [Barrage](https://github.com/maulik9898/barrage)                               | Minimal Deluge WebUI with full mobile support                                                                                                                       | 8145  | | ||||||
| - [Bitmagnet](https://github.com/bitmagnet-io/bitmagnet) - A self-hosted BitTorrent indexer. | | <img src="apps/bazarr/metadata/logo.jpg" height="auto" width=50>                    | [Bazarr](https://github.com/morpheus65535/bazarr)                              | A companion application to Sonarr and Radarr that manages and downloads subtitles                                                                                   | 6767  | | ||||||
| - [Booksonic](https://github.com/popeen/Booksonic-Air) - The selfhosted audiobook server | | <img src="apps/bitcoind/metadata/logo.jpg" height="auto" width=50>                  | [Bitcoin](https://github.com/lncm/docker-bitcoind)                             | Bitcoin core node                                                                                                                                                   | 8333  | | ||||||
| - [Bookstack](https://github.com/BookStackApp/BookStack) - BookStack is a self-hosted platform for organising and storing information. | | <img src="apps/bitmagnet/metadata/logo.jpg" height="auto" width=50>                 | [Bitmagnet](https://github.com/bitmagnet-io/bitmagnet)                         | A self-hosted BitTorrent indexer.                                                                                                                                   | 3335  | | ||||||
| - [Budibase](https://github.com/Budibase/budibase) - Internal tools made easy. | | <img src="apps/booksonic/metadata/logo.jpg" height="auto" width=50>                 | [Booksonic](https://github.com/popeen/Booksonic-Air)                           | The selfhosted audiobook server                                                                                                                                     | 8040  | | ||||||
| - [Cal.com](https://github.com/calcom/cal.com) - Scheduling infrastructure for absolutely everyone. | | <img src="apps/bookstack/metadata/logo.jpg" height="auto" width=50>                 | [Bookstack](https://github.com/BookStackApp/BookStack)                         | BookStack is a self-hosted platform for organising and storing information.                                                                                         | 8119  | | ||||||
| - [Calibre-Web - EBook Reader](https://github.com/janeczku/calibre-web) - Calibre-web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database. | | <img src="apps/budibase/metadata/logo.jpg" height="auto" width=50>                  | [Budibase](https://github.com/Budibase/budibase)                               | Internal tools made easy.                                                                                                                                           | 8268  | | ||||||
| - [ChangeDetection](https://github.com/dgtlmoon/changedetection.io) - Website change detection. | | <img src="apps/calcom/metadata/logo.jpg" height="auto" width=50>                    | [Cal.com](https://github.com/calcom/cal.com)                                   | Scheduling infrastructure for absolutely everyone.                                                                                                                  | 8294  | | ||||||
| - [ChatGPT UI](https://github.com/WongSaang/chatgpt-ui) - A ChatGPT web client that supports multiple users, multiple languages, and multiple database connections for persistent data storage | | <img src="apps/calibre-web/metadata/logo.jpg" height="auto" width=50>               | [Calibre-Web - EBook Reader](https://github.com/janeczku/calibre-web)          | Calibre-web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.                               | 8100  | | ||||||
| - [Chatpad AI](https://github.com/deiucanta/chatpad) - Not just another ChatGPT user-interface! | | <img src="apps/changedetection/metadata/logo.jpg" height="auto" width=50>           | [ChangeDetection](https://github.com/dgtlmoon/changedetection.io)              | Website change detection.                                                                                                                                           | 8257  | | ||||||
| - [Cheshire Cat AI](https://github.com/cheshire-cat-ai/core) - A production-ready AI framework to develop AI agents. | | <img src="apps/chatgpt-ui/metadata/logo.jpg" height="auto" width=50>                | [ChatGPT UI](https://github.com/WongSaang/chatgpt-ui)                          | A ChatGPT web client that supports multiple users, multiple languages, and multiple database connections for persistent data storage                                | 8200  | | ||||||
| - [Cloudflare DDNS](https://github.com/joshuaavalon/docker-cloudflare) - Update DNS records on Cloudflare. | | <img src="apps/chatpad/metadata/logo.jpg" height="auto" width=50>                   | [Chatpad AI](https://github.com/deiucanta/chatpad)                             | Not just another ChatGPT user-interface!                                                                                                                            | 8179  | | ||||||
| - [Cloudflared](https://github.com/WisdomSky/Cloudflared-web) - Cloudflare Tunnels in a Web UI | | <img src="apps/cheshire-cat-ai/metadata/logo.jpg" height="auto" width=50>           | [Cheshire Cat AI](https://github.com/cheshire-cat-ai/core)                     | A production-ready AI framework to develop AI agents.                                                                                                               | 1865  | | ||||||
| - [Code-Server - Web VS Code](https://github.com/linuxserver/docker-code-server) - Code-server is VS Code running on a remote server, accessible through the browser. | | <img src="apps/cloudflare-ddns/metadata/logo.jpg" height="auto" width=50>           | [Cloudflare DDNS](https://github.com/joshuaavalon/docker-cloudflare)           | Update DNS records on Cloudflare.                                                                                                                                   | 22222 | | ||||||
| - [CodeX.docs](https://github.com/codex-team/codex.docs) - Free Docs app powered by Editor.js ecosystem. | | <img src="apps/cloudflared/metadata/logo.jpg" height="auto" width=50>               | [Cloudflared](https://github.com/WisdomSky/Cloudflared-web)                    | Cloudflare Tunnels in a Web UI                                                                                                                                      | 14333 | | ||||||
| - [Crafty](https://gitlab.com/crafty-controller/crafty-4) - Python based Control Panel for your Minecraft Server | | <img src="apps/code-server/metadata/logo.jpg" height="auto" width=50>               | [Code-Server - Web VS Code](https://github.com/linuxserver/docker-code-server) | Code-server is VS Code running on a remote server, accessible through the browser.                                                                                  | 8138  | | ||||||
| - [Cross-Seed](https://github.com/cross-seed/cross-seed) - Fully-automatic cross-seeding with Torznab. | | <img src="apps/codex-docs/metadata/logo.jpg" height="auto" width=50>                | [CodeX.docs](https://github.com/codex-team/codex.docs)                         | Free Docs app powered by Editor.js ecosystem.                                                                                                                       | 8101  | | ||||||
| - [CTFd](https://github.com/CTFd/CTFd) - Cyber Security Training made simple. | | <img src="apps/crafty/metadata/logo.jpg" height="auto" width=50>                    | [Crafty](https://gitlab.com/crafty-controller/crafty-4)                        | Python based Control Panel for your Minecraft Server                                                                                                                | 8456  | | ||||||
| - [DailyTxT](https://github.com/PhiTux/DailyTxT) - Encrypted Diary Web-App | | <img src="apps/cross-seed/metadata/logo.jpg" height="auto" width=50>                | [Cross-Seed](https://github.com/cross-seed/cross-seed)                         | Fully-automatic cross-seeding with Torznab.                                                                                                                         | 2468  | | ||||||
| - [Dash.](https://github.com/MauriceNino/dashdot) - A simple, modern server dashboard, primarily used by smaller private server | | <img src="apps/crowdsec/metadata/logo.jpg" height="auto" width=50>                  | [Crowdsec](https://github.com/crowdsecurity/crowdsec)                          | Participative security solution offering crowdsourced protection against malicious IPs and access to the most advanced real-world CTI.                              | 8679  | | ||||||
| - [Dashy](https://github.com/lissy93/dashy) - A self-hostable personal dashboard built for you. | | <img src="apps/ctfd/metadata/logo.jpg" height="auto" width=50>                      | [CTFd](https://github.com/CTFd/CTFd)                                           | Cyber Security Training made simple.                                                                                                                                | 8546  | | ||||||
| - [Databag](https://github.com/balzack/databag) - Messenger for the Decentralized Web | | <img src="apps/dailytxt/metadata/logo.jpg" height="auto" width=50>                  | [DailyTxT](https://github.com/PhiTux/DailyTxT)                                 | Encrypted Diary Web-App                                                                                                                                             | 8156  | | ||||||
| - [Deemix](https://gitlab.com/Bockiii/deemix-docker) - deemix is a barebone deezer downloader library built from the ashes of Deezloader Remix. | | <img src="apps/dashdot/metadata/logo.jpg" height="auto" width=50>                   | [Dash.](https://github.com/MauriceNino/dashdot)                                | A simple, modern server dashboard, primarily used by smaller private server                                                                                         | 8173  | | ||||||
| - [Deluge](https://github.com/linuxserver/docker-deluge) - Deluge is a lightweight, Free Software, cross-platform BitTorrent client. | | <img src="apps/dashy/metadata/logo.jpg" height="auto" width=50>                     | [Dashy](https://github.com/lissy93/dashy)                                      | A self-hostable personal dashboard built for you.                                                                                                                   | 8205  | | ||||||
| - [Dockge](https://github.com/louislam/dockge) - Docker compose.yaml stack-oriented manager. | | <img src="apps/databag/metadata/logo.jpg" height="auto" width=50>                   | [Databag](https://github.com/balzack/databag)                                  | Messenger for the Decentralized Web                                                                                                                                 | 8201  | | ||||||
| - [DokuWiki](https://github.com/dokuwiki/dokuwiki) - DokuWiki is a simple to use and highly versatile Open Source wiki software  | | <img src="apps/deemix/metadata/logo.jpg" height="auto" width=50>                    | [Deemix](https://gitlab.com/Bockiii/deemix-docker)                             | deemix is a barebone deezer downloader library built from the ashes of Deezloader Remix.                                                                            | 6595  | | ||||||
| - [Dozzle](https://github.com/amir20/dozzle) - Dozzle is a small web based app to monitor Docker logs | | <img src="apps/deluge/metadata/logo.jpg" height="auto" width=50>                    | [Deluge](https://github.com/linuxserver/docker-deluge)                         | Deluge is a lightweight, Free Software, cross-platform BitTorrent client.                                                                                           | 8144  | | ||||||
| - [Draw.io](https://github.com/jgraph/drawio) - Diagramming and whiteboarding app. | | <img src="apps/dockge/metadata/logo.jpg" height="auto" width=50>                    | [Dockge](https://github.com/louislam/dockge)                                   | Docker compose.yaml stack-oriented manager.                                                                                                                         | 8768  | | ||||||
| - [Duck DNS](https://github.com/linuxserver/docker-duckdns) - Duck DNS is a free Dynamic DNS service | | <img src="apps/dokuwiki/metadata/logo.jpg" height="auto" width=50>                  | [DokuWiki](https://github.com/dokuwiki/dokuwiki)                               | DokuWiki is a simple to use and highly versatile Open Source wiki software                                                                                          | 8149  | | ||||||
| - [Duplicati](https://github.com/linuxserver/docker-duplicati) - Store securely encrypted backups in the cloud! | | <img src="apps/dozzle/metadata/logo.jpg" height="auto" width=50>                    | [Dozzle](https://github.com/amir20/dozzle)                                     | Dozzle is a small web based app to monitor Docker logs                                                                                                              | 8013  | | ||||||
| - [Eclipse Mosquitto](https://github.com/eclipse/mosquitto/) - open source message broker | | <img src="apps/drawio/metadata/logo.jpg" height="auto" width=50>                    | [Draw.io](https://github.com/jgraph/drawio)                                    | Diagramming and whiteboarding app.                                                                                                                                  | 8734  | | ||||||
| - [Email OAuth2 Proxy](https://github.com/simonrob/email-oauth2-proxy) - OAuth Proxy for IMAP/POP/SMTP. | | <img src="apps/duckdns/metadata/logo.jpg" height="auto" width=50>                   | [Duck DNS](https://github.com/linuxserver/docker-duckdns)                      | Duck DNS is a free Dynamic DNS service                                                                                                                              | 8026  | | ||||||
| - [Emulatorjs](https://github.com/EmulatorJS/EmulatorJS) - Self-hosted Javascript emulation for various system. | | <img src="apps/duplicati/metadata/logo.jpg" height="auto" width=50>                 | [Duplicati](https://github.com/linuxserver/docker-duplicati)                   | Store securely encrypted backups in the cloud!                                                                                                                      | 8159  | | ||||||
| - [Excalidraw](https://github.com/excalidraw/excalidraw) - Online whiteboard collaboration made easy | | <img src="apps/eclipse-mosquitto/metadata/logo.jpg" height="auto" width=50>         | [Eclipse Mosquitto](https://github.com/eclipse/mosquitto/)                     | open source message broker                                                                                                                                          | 8288  | | ||||||
| - [File Browser](https://github.com/filebrowser/filebrowser) - Access your homeserver files from your browser | | <img src="apps/email-oauth2-proxy/metadata/logo.jpg" height="auto" width=50>        | [Email OAuth2 Proxy](https://github.com/simonrob/email-oauth2-proxy)           | OAuth Proxy for IMAP/POP/SMTP.                                                                                                                                      | 1999  | | ||||||
| - [Filestash](https://github.com/mickael-kerjean/filestash) - A modern web client for SFTP, S3, FTP, WebDAV, Git, Minio, LDAP, CalDAV, CardDAV, Mysql, Backblaze | | <img src="apps/emulatorjs/metadata/logo.jpg" height="auto" width=50>                | [Emulatorjs](https://github.com/EmulatorJS/EmulatorJS)                         | Self-hosted Javascript emulation for various system.                                                                                                                | 8164  | | ||||||
| - [Firefly III Data Importer](https://github.com/firefly-iii/data-importer) - The Firefly III Data Importer can import data into Firefly III | | <img src="apps/excalidraw/metadata/logo.jpg" height="auto" width=50>                | [Excalidraw](https://github.com/excalidraw/excalidraw)                         | Online whiteboard collaboration made easy                                                                                                                           | 8172  | | ||||||
| - [Firefly III](https://github.com/firefly-iii/firefly-iii) - Firefly III: a personal finances manager  | | <img src="apps/filebrowser/metadata/logo.jpg" height="auto" width=50>               | [File Browser](https://github.com/filebrowser/filebrowser)                     | Access your homeserver files from your browser                                                                                                                      | 8096  | | ||||||
| - [Fireshare](https://github.com/ShaneIsrael/fireshare) - Self host your media and share with unique links | | <img src="apps/filestash/metadata/logo.jpg" height="auto" width=50>                 | [Filestash](https://github.com/mickael-kerjean/filestash)                      | A modern web client for SFTP, S3, FTP, WebDAV, Git, Minio, LDAP, CalDAV, CardDAV, Mysql, Backblaze                                                                  | 8189  | | ||||||
| - [Flaresolverr](https://github.com/FlareSolverr/FlareSolverr) - Bypass Cloudflare and DDoS-GuARD. | | <img src="apps/firefly-iii-data-importer/metadata/logo.jpg" height="auto" width=50> | [Firefly III Data Importer](https://github.com/firefly-iii/data-importer)      | The Firefly III Data Importer can import data into Firefly III                                                                                                      | 8150  | | ||||||
| - [flatnotes](https://github.com/Dullage/flatnotes) - A self-hosted, database-less note taking web app | | <img src="apps/firefly-iii/metadata/logo.jpg" height="auto" width=50>               | [Firefly III](https://github.com/firefly-iii/firefly-iii)                      | Firefly III: a personal finances manager                                                                                                                            | 8115  | | ||||||
| - [Flightlog](https://github.com/perdian/flightlog/) - Flightlog, a web application that keeps track of your personal flight history | | <img src="apps/fireshare/metadata/logo.jpg" height="auto" width=50>                 | [Fireshare](https://github.com/ShaneIsrael/fireshare)                          | Self host your media and share with unique links                                                                                                                    | 8140  | | ||||||
| - [Flowise AI](https://github.com/FlowiseAI/Flowise) - Build LLM Apps Easily | | <img src="apps/flaresolverr/metadata/logo.jpg" height="auto" width=50>              | [Flaresolverr](https://github.com/FlareSolverr/FlareSolverr)                   | Bypass Cloudflare and DDoS-GuARD.                                                                                                                                   | 8666  | | ||||||
| - [Forgejo](https://codeberg.org/forgejo/forgejo/) - Beyond coding. We forge. · Lightweight and performant · Guaranteed 100% Free Software | | <img src="apps/flatnotes/metadata/logo.jpg" height="auto" width=50>                 | [flatnotes](https://github.com/Dullage/flatnotes)                              | A self-hosted, database-less note taking web app                                                                                                                    | 8137  | | ||||||
| - [FreshRSS](https://github.com/FreshRSS/FreshRSS) - A free, self-hostable aggregator…  | | <img src="apps/flightlog/metadata/logo.jpg" height="auto" width=50>                 | [Flightlog](https://github.com/perdian/flightlog/)                             | Flightlog, a web application that keeps track of your personal flight history                                                                                       | 8934  | | ||||||
| - [gandi-livedns](https://github.com/jbbodart/gandi-livedns) - Update your Gandi DNS zone records with your WAN IP | | <img src="apps/flowise/metadata/logo.jpg" height="auto" width=50>                   | [Flowise AI](https://github.com/FlowiseAI/Flowise)                             | Build LLM Apps Easily                                                                                                                                               | 8009  | | ||||||
| - [Get A Shell](https://github.com/steveiliop56/getashell) - SSH shells from a Web UI | | <img src="apps/forgejo/metadata/logo.jpg" height="auto" width=50>                   | [Forgejo](https://codeberg.org/forgejo/forgejo/)                               | Beyond coding. We forge. · Lightweight and performant · Guaranteed 100% Free Software                                                                               | 8195  | | ||||||
| - [Ghost](https://github.com/TryGhost/Ghost) - Ghost - Turn your audience into a business. | | <img src="apps/freshrss/metadata/logo.jpg" height="auto" width=50>                  | [FreshRSS](https://github.com/FreshRSS/FreshRSS)                               | A free, self-hostable aggregator…                                                                                                                                   | 8086  | | ||||||
| - [Ghostfolio](https://github.com/ghostfolio/ghostfolio) - Open Source Wealth Management Software. | | <img src="apps/gandi-livedns/metadata/logo.jpg" height="auto" width=50>             | [gandi-livedns](https://github.com/jbbodart/gandi-livedns)                     | Update your Gandi DNS zone records with your WAN IP                                                                                                                 | 8134  | | ||||||
| - [Gitea](https://github.com/go-gitea/gitea) - Gitea - Git with a cup of tea · A painless self-hosted Git service. · Cross-platform · Easy to install · Lightweight · Open Source. | | <img src="apps/getashell/metadata/logo.jpg" height="auto" width=50>                 | [Get A Shell](https://github.com/steveiliop56/getashell)                       | SSH shells from a Web UI                                                                                                                                            | 8281  | | ||||||
| - [Gladys Assistant](https://github.com/gladysassistant/gladys) - A privacy-first, open-source home assistant | | <img src="apps/ghost/metadata/logo.jpg" height="auto" width=50>                     | [Ghost](https://github.com/TryGhost/Ghost)                                     | Ghost - Turn your audience into a business.                                                                                                                         | 8117  | | ||||||
| - [Glances](https://github.com/nicolargo/glances) - An eye on your system | | <img src="apps/ghostfolio/metadata/logo.jpg" height="auto" width=50>                | [Ghostfolio](https://github.com/ghostfolio/ghostfolio)                         | Open Source Wealth Management Software.                                                                                                                             | 3333  | | ||||||
| - [Gotify](https://github.com/gotify/server) - Gotify, a simple server for sending and receiving notification messages. | | <img src="apps/gitea/metadata/logo.jpg" height="auto" width=50>                     | [Gitea](https://github.com/go-gitea/gitea)                                     | Gitea - Git with a cup of tea · A painless self-hosted Git service. · Cross-platform · Easy to install · Lightweight · Open Source.                                 | 8108  | | ||||||
| - [GoToSocial](https://github.com/superseriousbusiness/gotosocial) - Fast, fun, ActivityPub server, powered by Go. | | <img src="apps/gladys/metadata/logo.jpg" height="auto" width=50>                    | [Gladys Assistant](https://github.com/gladysassistant/gladys)                  | A privacy-first, open-source home assistant                                                                                                                         | 8270  | | ||||||
| - [Grafana](https://github.com/grafana/grafana) - The open and composable observability and data visualization platform | | <img src="apps/glances/metadata/logo.jpg" height="auto" width=50>                   | [Glances](https://github.com/nicolargo/glances)                                | An eye on your system                                                                                                                                               | 8420  | | ||||||
| - [Grav](https://github.com/getgrav/grav) - Grav is a Fast, Simple, and Flexible, file-based Web-platform.  | | <img src="apps/gotify/metadata/logo.jpg" height="auto" width=50>                    | [Gotify](https://github.com/gotify/server)                                     | Gotify, a simple server for sending and receiving notification messages.                                                                                            | 8129  | | ||||||
| - [Grist](https://github.com/gristlabs/grist-core) - Grist is the evolution of spreadsheets. | | <img src="apps/gotosocial/metadata/logo.jpg" height="auto" width=50>                | [GoToSocial](https://github.com/superseriousbusiness/gotosocial)               | Fast, fun, ActivityPub server, powered by Go.                                                                                                                       | 8188  | | ||||||
| - [Grocy](https://github.com/grocy/grocy) - ERP beyond your fridge | | <img src="apps/grafana/metadata/logo.jpg" height="auto" width=50>                   | [Grafana](https://github.com/grafana/grafana)                                  | The open and composable observability and data visualization platform                                                                                               | 8160  | | ||||||
| - [Halo](https://github.com/halo-dev/halo) - Halo - Open source website building tool. | | <img src="apps/grav/metadata/logo.jpg" height="auto" width=50>                      | [Grav](https://github.com/getgrav/grav)                                        | Grav is a Fast, Simple, and Flexible, file-based Web-platform.                                                                                                      | 8161  | | ||||||
| - [Hammond](https://github.com/alfhou/hammond) - Self hosted vehicle and expense management system. Like Clarkson, but better | | <img src="apps/grist/metadata/logo.jpg" height="auto" width=50>                     | [Grist](https://github.com/gristlabs/grist-core)                               | Grist is the evolution of spreadsheets.                                                                                                                             | 8484  | | ||||||
| - [Haven](https://github.com/havenweb/haven) - Self-hostable private blogging | | <img src="apps/grocy/metadata/logo.jpg" height="auto" width=50>                     | [Grocy](https://github.com/grocy/grocy)                                        | ERP beyond your fridge                                                                                                                                              | 8136  | | ||||||
| - [HedgeDoc](https://github.com/hedgedoc/hedgedoc) - A Collaborative Markdown and Note Taking App | | <img src="apps/halo/metadata/logo.jpg" height="auto" width=50>                      | [Halo](https://github.com/halo-dev/halo)                                       | Halo - Open source website building tool.                                                                                                                           | 8092  | | ||||||
| - [Heimdall](https://github.com/linuxserver/Heimdall) - Application Dashboard | | <img src="apps/hammond/metadata/logo.jpg" height="auto" width=50>                   | [Hammond](https://github.com/alfhou/hammond)                                   | Self hosted vehicle and expense management system. Like Clarkson, but better                                                                                        | 8185  | | ||||||
| - [Hello World](https://github.com/crccheck/docker-hello-world) - Hello World web server in under 2 MB | | <img src="apps/haven/metadata/logo.jpg" height="auto" width=50>                     | [Haven](https://github.com/havenweb/haven)                                     | Self-hostable private blogging                                                                                                                                      | 8130  | | ||||||
| - [Homarr](https://github.com/ajnart/homarr) - Homarr is a simple and lightweight homepage for your server, that helps you easily access all of your services in one place. | | <img src="apps/hedgedoc/metadata/logo.jpg" height="auto" width=50>                  | [HedgeDoc](https://github.com/hedgedoc/hedgedoc)                               | A Collaborative Markdown and Note Taking App                                                                                                                        | 8142  | | ||||||
| - [Home Assistant](https://github.com/home-assistant/core) - Open source home automation that puts local control and privacy first | | <img src="apps/heimdall/metadata/logo.jpg" height="auto" width=50>                  | [Heimdall](https://github.com/linuxserver/Heimdall)                            | Application Dashboard                                                                                                                                               | 8783  | | ||||||
| - [HomeBox](https://github.com/hay-kot/homebox) - Homebox is the inventory and organization system built for the Home User | | <img src="apps/hello-world/metadata/logo.jpg" height="auto" width=50>               | [Hello World](https://github.com/crccheck/docker-hello-world)                  | Hello World web server in under 2 MB                                                                                                                                | 8000  | | ||||||
| - [Home Bridge](https://github.com/homebridge/homebridge) - HomeKit support for the impatient.   | | <img src="apps/homarr/metadata/logo.jpg" height="auto" width=50>                    | [Homarr](https://github.com/ajnart/homarr)                                     | Homarr is a simple and lightweight homepage for your server, that helps you easily access all of your services in one place.                                        | 8102  | | ||||||
| - [Homepage](https://github.com/gethomepage/homepage) - A highly customizable homepage | | <img src="apps/homeassistant-1/metadata/logo.jpg" height="auto" width=50>           | [Home Assistant](https://github.com/home-assistant/core)                       | Open source home automation that puts local control and privacy first                                                                                               | 8209  | | ||||||
| - [Immich](https://github.com/immich-app/immich) - Photo and video backup solution directly from your mobile phone. | | <img src="apps/homebox/metadata/logo.jpg" height="auto" width=50>                   | [HomeBox](https://github.com/hay-kot/homebox)                                  | Homebox is the inventory and organization system built for the Home User                                                                                            | 7745  | | ||||||
| - [Invidious](https://github.com/iv-org/invidious) - An alternative front-end to YouTube | | <img src="apps/homebridge/metadata/logo.jpg" height="auto" width=50>                | [Home Bridge](https://github.com/homebridge/homebridge)                        | HomeKit support for the impatient.                                                                                                                                  | 8581  | | ||||||
| - [Invoice Ninja](https://github.com/invoiceninja/invoiceninja) - Invoices, Expenses and Tasks built with Laravel, Flutter and React. | | <img src="apps/homepage/metadata/logo.jpg" height="auto" width=50>                  | [Homepage](https://github.com/gethomepage/homepage)                            | A highly customizable homepage                                                                                                                                      | 8756  | | ||||||
| - [IT-Tools](https://github.com/CorentinTh/it-tools) - Collection of handy online tools for developers, with great UX. | | <img src="apps/immich/metadata/logo.jpg" height="auto" width=50>                    | [Immich](https://github.com/immich-app/immich)                                 | Photo and video backup solution directly from your mobile phone.                                                                                                    | 8128  | | ||||||
| - [Jackett](https://github.com/Jackett/Jackett) - API Support for your favorite torrent trackers  | | <img src="apps/invidious/metadata/logo.jpg" height="auto" width=50>                 | [Invidious](https://github.com/iv-org/invidious)                               | An alternative front-end to YouTube                                                                                                                                 | 8095  | | ||||||
| - [Jellyfin Vue (Beta)](https://github.com/jellyfin/jellyfin-vue) - A modern web client for Jellyfin based on Vue | | <img src="apps/invoice-ninja/metadata/logo.jpg" height="auto" width=50>             | [Invoice Ninja](https://github.com/invoiceninja/invoiceninja)                  | Invoices, Expenses and Tasks built with Laravel, Flutter and React.                                                                                                 | 8881  | | ||||||
| - [Jellyfin](https://github.com/jellyfin/jellyfin) - A media server for your home collection | | <img src="apps/it-tools/metadata/logo.jpg" height="auto" width=50>                  | [IT-Tools](https://github.com/CorentinTh/it-tools)                             | Collection of handy online tools for developers, with great UX.                                                                                                     | 8171  | | ||||||
| - [Jellyseerr](https://github.com/Fallenbagel/jellyseerr) - Fork of overseerr for Jellyfin support | | <img src="apps/jackett/metadata/logo.jpg" height="auto" width=50>                   | [Jackett](https://github.com/Jackett/Jackett)                                  | API Support for your favorite torrent trackers                                                                                                                      | 8097  | | ||||||
| - [Joplin Server](https://github.com/laurent22/joplin) - Note taking and to-do application with synchronisation | | <img src="apps/jellyfin-vue/metadata/logo.jpg" height="auto" width=50>              | [Jellyfin Vue (Beta)](https://github.com/jellyfin/jellyfin-vue)                | A modern web client for Jellyfin based on Vue                                                                                                                       | 8202  | | ||||||
| - [Kanboard](https://github.com/kanboard/kanboard) - Open Source Kanban Board | | <img src="apps/jellyfin/metadata/logo.jpg" height="auto" width=50>                  | [Jellyfin](https://github.com/jellyfin/jellyfin)                               | A media server for your home collection                                                                                                                             | 8091  | | ||||||
| - [Kapowarr](https://github.com/Casvt/Kapowarr) - Kapowarr is a software to build and manage a comic book library, fitting in the *arr suite of software. | | <img src="apps/jellyseerr/metadata/logo.jpg" height="auto" width=50>                | [Jellyseerr](https://github.com/Fallenbagel/jellyseerr)                        | Fork of overseerr for Jellyfin support                                                                                                                              | 8163  | | ||||||
| - [Kasm Workspaces](https://github.com/kasmtech) - Container streaming platform. | | <img src="apps/joplin/metadata/logo.jpg" height="auto" width=50>                    | [Joplin Server](https://github.com/laurent22/joplin)                           | Note taking and to-do application with synchronisation                                                                                                              | 8099  | | ||||||
| - [Kavita](https://github.com/Kareadita/Kavita) - Kavita is a fast, feature rich, cross platform reading server | | <img src="apps/kanboard/metadata/logo.jpg" height="auto" width=50>                  | [Kanboard](https://github.com/kanboard/kanboard)                               | Open Source Kanban Board                                                                                                                                            | 8010  | | ||||||
| - [Kimai](https://github.com/kimai/kimai) - Open source time-tracker | | <img src="apps/kapowarr/metadata/logo.jpg" height="auto" width=50>                  | [Kapowarr](https://github.com/Casvt/Kapowarr)                                  | Kapowarr is a software to build and manage a comic book library, fitting in the \*arr suite of software.                                                            | 8194  | | ||||||
| - [Kiwix Server](https://github.com/kiwix/kiwix-tools/) - Kiwix Server is a web server for hosting .zim files | | <img src="apps/kasm-workspaces/metadata/logo.jpg" height="auto" width=50>           | [Kasm Workspaces](https://github.com/kasmtech)                                 | Container streaming platform.                                                                                                                                       | 8744  | | ||||||
| - [Koillection](https://github.com/benjaminjonard/koillection) - Koillection allow you to manage any kind of collections. | | <img src="apps/kavita/metadata/logo.jpg" height="auto" width=50>                    | [Kavita](https://github.com/Kareadita/Kavita)                                  | Kavita is a fast, feature rich, cross platform reading server                                                                                                       | 8175  | | ||||||
| - [Komga](https://github.com/gotson/komga) - A media server for your comics, mangas, BDs, magazines and eBooks. | | <img src="apps/kimai/metadata/logo.jpg" height="auto" width=50>                     | [Kimai](https://github.com/kimai/kimai)                                        | Open source time-tracker                                                                                                                                            | 8003  | | ||||||
| - [LibReddit](https://github.com/spikecodes/libreddit) - Browse reddit without problems! | | <img src="apps/kiwix-serve/metadata/logo.jpg" height="auto" width=50>               | [Kiwix Server](https://github.com/kiwix/kiwix-tools/)                          | Kiwix Server is a web server for hosting .zim files                                                                                                                 | 8169  | | ||||||
| - [LibrePhotos](https://github.com/LibrePhotos/librephotos) - Complete photo management service | | <img src="apps/koillection/metadata/logo.jpg" height="auto" width=50>               | [Koillection](https://github.com/benjaminjonard/koillection)                   | Koillection allow you to manage any kind of collections.                                                                                                            | 8050  | | ||||||
| - [LibreTranslate](https://github.com/LibreTranslate/LibreTranslate) - Free and Open Source Machine Translation API. 100% self-hosted, offline capable and easy to setup. | | <img src="apps/komga/metadata/logo.jpg" height="auto" width=50>                     | [Komga](https://github.com/gotson/komga)                                       | A media server for your comics, mangas, BDs, magazines and eBooks.                                                                                                  | 2560  | | ||||||
| - [Lidarr on Steroids](https://github.com/youegraillot/lidarr-on-steroids) - Lidarr with some muscles thanks to deemix | | <img src="apps/libreddit/metadata/logo.jpg" height="auto" width=50>                 | [LibReddit](https://github.com/spikecodes/libreddit)                           | Browse reddit without problems!                                                                                                                                     | 8105  | | ||||||
| - [Lidarr](https://github.com/Lidarr/Lidarr) -  Looks and smells like Sonarr but made for music. | | <img src="apps/librephotos/metadata/logo.jpg" height="auto" width=50>               | [LibrePhotos](https://github.com/LibrePhotos/librephotos)                      | Complete photo management service                                                                                                                                   | 8132  | | ||||||
| - [LinkStack](https://github.com/LinkStackOrg/linkstack-docker) - LinkStack is a highly customizable link sharing platform with an intuitive, easy to use user interface | | <img src="apps/libretranslate/metadata/logo.jpg" height="auto" width=50>            | [LibreTranslate](https://github.com/LibreTranslate/LibreTranslate)             | Free and Open Source Machine Translation API. 100% self-hosted, offline capable and easy to setup.                                                                  | 8121  | | ||||||
| - [Linkwarden](https://github.com/linkwarden/linkwarden) - A self-hosted, open-source collaborative bookmark manager | | <img src="apps/lidarr-deemix/metadata/logo.jpg" height="auto" width=50>             | [Lidarr on Steroids](https://github.com/youegraillot/lidarr-on-steroids)       | Lidarr with some muscles thanks to deemix                                                                                                                           | 8186  | | ||||||
| - [Lobe Chat](https://github.com/lobehub/lobe-chat) - LLM chatbot framework | | <img src="apps/lidarr/metadata/logo.jpg" height="auto" width=50>                    | [Lidarr](https://github.com/Lidarr/Lidarr)                                     | Looks and smells like Sonarr but made for music.                                                                                                                    | 8131  | | ||||||
| - [Lodestone Core](https://github.com/Lodestone-Team/lodestone_core) - Server hosting tool for Minecraft and other multiplayers | | <img src="apps/linkstack/metadata/logo.jpg" height="auto" width=50>                 | [LinkStack](https://github.com/LinkStackOrg/linkstack-docker)                  | LinkStack is a highly customizable link sharing platform with an intuitive, easy to use user interface                                                              | 8154  | | ||||||
| - [Logto](https://github.com/logto-io/logto) - Logto is a cost-effective open-source alternative to Auth0.  | | <img src="apps/linkwarden/metadata/logo.jpg" height="auto" width=50>                | [Linkwarden](https://github.com/linkwarden/linkwarden)                         | A self-hosted, open-source collaborative bookmark manager                                                                                                           | 8199  | | ||||||
| - [Maintainerr](https://github.com/jorenn92/Maintainerr) - Maintainerr will manage the storage space on your plex server, launching automated actions to delete your files. | | <img src="apps/lobe-chat/metadata/logo.jpg" height="auto" width=50>                 | [Lobe Chat](https://github.com/lobehub/lobe-chat)                              | LLM chatbot framework                                                                                                                                               | 3210  | | ||||||
| - [Mastodon](https://github.com/mastodon/mastodon) - Your self-hosted, globally interconnected microblogging community | | <img src="apps/lodestone-core/metadata/logo.jpg" height="auto" width=50>            | [Lodestone Core](https://github.com/Lodestone-Team/lodestone_core)             | Server hosting tool for Minecraft and other multiplayers                                                                                                            | 16662 | | ||||||
| - [Conduit](https://gitlab.com/famedly/conduit) - Conduit is a simple, fast and reliable chat server written in Rust | | <img src="apps/logto/metadata/logo.jpg" height="auto" width=50>                     | [Logto](https://github.com/logto-io/logto)                                     | Logto is a cost-effective open-source alternative to Auth0.                                                                                                         | 8203  | | ||||||
| - [Mealie](https://github.com/hay-kot/mealie) - Mealie is a self-hosted recipe manager and meal planner. | | <img src="apps/maintainerr/metadata/logo.jpg" height="auto" width=50>               | [Maintainerr](https://github.com/jorenn92/Maintainerr)                         | Maintainerr will manage the storage space on your plex server, launching automated actions to delete your files.                                                    | 8030  | | ||||||
| - [Memos](https://github.com/usememos/memos) - Memo hub for knowledge management and collaboration. | | <img src="apps/mastodon/metadata/logo.jpg" height="auto" width=50>                  | [Mastodon](https://github.com/mastodon/mastodon)                               | Your self-hosted, globally interconnected microblogging community                                                                                                   | 8210  | | ||||||
| - [MeTube](https://github.com/alexta69/metube) - youtube-dl web UI | | <img src="apps/matrix-conduit/metadata/logo.jpg" height="auto" width=50>            | [Conduit](https://gitlab.com/famedly/conduit)                                  | Conduit is a simple, fast and reliable chat server written in Rust                                                                                                  | 6167  | | ||||||
| - [Mind](https://github.com/Casvt/MIND) - A simple self hosted reminder platform that uses push to send notifications to your device. | | <img src="apps/mealie-1/metadata/logo.jpg" height="auto" width=50>                  | [Mealie](https://github.com/hay-kot/mealie)                                    | Mealie is a self-hosted recipe manager and meal planner.                                                                                                            | 8220  | | ||||||
| - [Minecraft Server](https://github.com/itzg/docker-minecraft-server) - Run a minecraft server | | <img src="apps/memos/metadata/logo.jpg" height="auto" width=50>                     | [Memos](https://github.com/usememos/memos)                                     | Memo hub for knowledge management and collaboration.                                                                                                                | 5230  | | ||||||
| - [Minio](https://github.com/minio/minio) - High Performance Object Storage | | <img src="apps/metube/metadata/logo.jpg" height="auto" width=50>                    | [MeTube](https://github.com/alexta69/metube)                                   | youtube-dl web UI                                                                                                                                                   | 8250  | | ||||||
| - [Mixpost Pro](https://github.com/inovector/mixpost) - Self-hosted social media management. Schedule and organize your social content.  | | <img src="apps/mind/metadata/logo.jpg" height="auto" width=50>                      | [Mind](https://github.com/Casvt/MIND)                                          | A simple self hosted reminder platform that uses push to send notifications to your device.                                                                         | 8143  | | ||||||
| - [Mixpost](https://github.com/inovector/mixpost) - Self-hosted social media management. Schedule and organize your social content.  | | <img src="apps/minecraft-server/metadata/logo.jpg" height="auto" width=50>          | [Minecraft Server](https://github.com/itzg/docker-minecraft-server)            | Run a minecraft server                                                                                                                                              | 25565 | | ||||||
| - [Moneroblock](https://github.com/duggavo/MoneroBlock) - Decentralized and trustless Monero block explorer | | <img src="apps/minio/metadata/logo.jpg" height="auto" width=50>                     | [Minio](https://github.com/minio/minio)                                        | High Performance Object Storage                                                                                                                                     | 8001  | | ||||||
| - [Monero Daemon](https://github.com/sethforprivacy/simple-monerod-docker) - Monero is a private, decentralized cryptocurrency that keeps your finances confidential and secure. | | <img src="apps/mixpost-pro/metadata/logo.jpg" height="auto" width=50>               | [Mixpost Pro](https://github.com/inovector/mixpost)                            | Self-hosted social media management. Schedule and organize your social content.                                                                                     | 8191  | | ||||||
| - [Mongo Express](https://github.com/mongo-express/mongo-express) - Web-based MongoDB admin interface, written with Node.js and Express | | <img src="apps/mixpost/metadata/logo.jpg" height="auto" width=50>                   | [Mixpost](https://github.com/inovector/mixpost)                                | Self-hosted social media management. Schedule and organize your social content.                                                                                     | 8167  | | ||||||
| - [MongoDB](https://github.com/mongodb/mongo) - MongoDB is an open-source NoSQL database | | <img src="apps/moneroblock/metadata/logo.jpg" height="auto" width=50>               | [Moneroblock](https://github.com/duggavo/MoneroBlock)                          | Decentralized and trustless Monero block explorer                                                                                                                   | 31312 | | ||||||
| - [Monica](https://github.com/monicahq/monica) - A Personal Relationship Management tool to help you document your social life. | | <img src="apps/monerod/metadata/logo.jpg" height="auto" width=50>                   | [Monero Daemon](https://github.com/sethforprivacy/simple-monerod-docker)       | Monero is a private, decentralized cryptocurrency that keeps your finances confidential and secure.                                                                 | 18080 | | ||||||
| - [Moodist](https://github.com/remvze/moodist) - Ambient sounds for focus and calm. | | <img src="apps/mongo-express/metadata/logo.jpg" height="auto" width=50>             | [Mongo Express](https://github.com/mongo-express/mongo-express)                | Web-based MongoDB admin interface, written with Node.js and Express                                                                                                 | 8087  | | ||||||
| - [Movary](https://github.com/leepeuker/movary) - Movary is a self-hosted web application to track and rate your watched movies.  | | <img src="apps/mongo/metadata/logo.jpg" height="auto" width=50>                     | [MongoDB](https://github.com/mongodb/mongo)                                    | MongoDB is an open-source NoSQL database                                                                                                                            | 27017 | | ||||||
| - [mStream Music](https://github.com/IrosTheBeggar/mStream) - The easiest music streaming server available | | <img src="apps/monica/metadata/logo.jpg" height="auto" width=50>                    | [Monica](https://github.com/monicahq/monica)                                   | A Personal Relationship Management tool to help you document your social life.                                                                                      | 3291  | | ||||||
| - [Mylar3](https://github.com/mylar3/mylar3) - Mylar3 is an automated Comic Book downloader (cbr/cbz) for use with NZB and torrents written in python. | | <img src="apps/moodist/metadata/logo.jpg" height="auto" width=50>                   | [Moodist](https://github.com/remvze/moodist)                                   | Ambient sounds for focus and calm.                                                                                                                                  | 8221  | | ||||||
| - [n8n](https://github.com/n8n-io/n8n) - Workflow Automation Tool. Alternative to Zapier | | <img src="apps/movary/metadata/logo.jpg" height="auto" width=50>                    | [Movary](https://github.com/leepeuker/movary)                                  | Movary is a self-hosted web application to track and rate your watched movies.                                                                                      | 8155  | | ||||||
| - [Navidrome](https://github.com/navidrome/navidrome/) - A selfhosted music server | | <img src="apps/mstream/metadata/logo.jpg" height="auto" width=50>                   | [mStream Music](https://github.com/IrosTheBeggar/mStream)                      | The easiest music streaming server available                                                                                                                        | 8162  | | ||||||
| - [Netboot.xyz](https://github.com/netbootxyz/netboot.xyz) - Your favorite operating systems in one place. | | <img src="apps/mylar3/metadata/logo.jpg" height="auto" width=50>                    | [Mylar3](https://github.com/mylar3/mylar3)                                     | Mylar3 is an automated Comic Book downloader (cbr/cbz) for use with NZB and torrents written in python.                                                             | 8174  | | ||||||
| - [Netdata](https://github.com/netdata/netdata) - Open-source, real-time, performance and health monitoring. | | <img src="apps/n8n-1/metadata/logo.jpg" height="auto" width=50>                     | [n8n](https://github.com/n8n-io/n8n)                                           | Workflow Automation Tool. Alternative to Zapier                                                                                                                     | 8215  | | ||||||
| - [Nextcloud](https://github.com/nextcloud/server) - Productivity platform that keeps you in control | | <img src="apps/navidrome/metadata/logo.jpg" height="auto" width=50>                 | [Navidrome](https://github.com/navidrome/navidrome/)                           | A selfhosted music server                                                                                                                                           | 4533  | | ||||||
| - [NextGBA](https://github.com/meienberger/nextgba) - Gameboy in your browser | | <img src="apps/netbootxyz/metadata/logo.jpg" height="auto" width=50>                | [Netboot.xyz](https://github.com/netbootxyz/netboot.xyz)                       | Your favorite operating systems in one place.                                                                                                                       | 8675  | | ||||||
| - [Nginx](https://github.com/nginx/nginx) - Open-source simple and fast web server. | | <img src="apps/netdata/metadata/logo.jpg" height="auto" width=50>                   | [Netdata](https://github.com/netdata/netdata)                                  | Open-source, real-time, performance and health monitoring.                                                                                                          | 19999 | | ||||||
| - [Nitter](https://github.com/zedeus/nitter) - Twitter without annoyances! | | <img src="apps/nextcloud/metadata/logo.jpg" height="auto" width=50>                 | [Nextcloud](https://github.com/nextcloud/server)                               | Productivity platform that keeps you in control                                                                                                                     | 8083  | | ||||||
| - [NocoDB](https://github.com/nocodb/nocodb) - Open Source Airtable Alternative | | <img src="apps/nextgba/metadata/logo.jpg" height="auto" width=50>                   | [NextGBA](https://github.com/meienberger/nextgba)                              | Gameboy in your browser                                                                                                                                             | 8435  | | ||||||
| - [Node-RED](https://github.com/node-red/node-red) - Low-code programming for event-driven applications | | <img src="apps/nginx/metadata/logo.jpg" height="auto" width=50>                     | [Nginx](https://github.com/nginx/nginx)                                        | Open-source simple and fast web server.                                                                                                                             | 8754  | | ||||||
| - [Notemark](https://github.com/enchant97/note-mark/) - Lighting fast web-based Markdown notes app. | | <img src="apps/nitter/metadata/logo.jpg" height="auto" width=50>                    | [Nitter](https://github.com/zedeus/nitter)                                     | Twitter without annoyances!                                                                                                                                         | 8106  | | ||||||
| - [Ntfy](https://github.com/binwiederhier/ntfy) - Ntfy, a simple server for sending and receiving notification messages. | | <img src="apps/nocodb/metadata/logo.jpg" height="auto" width=50>                    | [NocoDB](https://github.com/nocodb/nocodb)                                     | Open Source Airtable Alternative                                                                                                                                    | 8146  | | ||||||
| - [Obsidian LiveSync](https://github.com/vrtmrz/self-hosted-livesync-server) - LiveSync couchdb backend for Obsidian | | <img src="apps/nodered/metadata/logo.jpg" height="auto" width=50>                   | [Node-RED](https://github.com/node-red/node-red)                               | Low-code programming for event-driven applications                                                                                                                  | 8111  | | ||||||
| - [Octobot](https://github.com/Drakkar-Software/OctoBot) - Octobot is a powerful open-source cryptocurrency trading robot. | | <img src="apps/notemark/metadata/logo.jpg" height="auto" width=50>                  | [Notemark](https://github.com/enchant97/note-mark/)                            | Lighting fast web-based Markdown notes app.                                                                                                                         | 8567  | | ||||||
| - [Odoo](https://github.com/odoo/odoo) - Open-source business management software with modular applications for streamlined operations. | | <img src="apps/ntfy/metadata/logo.jpg" height="auto" width=50>                      | [Ntfy](https://github.com/binwiederhier/ntfy)                                  | Ntfy, a simple server for sending and receiving notification messages.                                                                                              | 8166  | | ||||||
| - [OneDev](https://code.onedev.io/onedev/server) - Self-hosted Git Server with Kanban and CI/CD | | <img src="apps/obsidian-livesync/metadata/logo.jpg" height="auto" width=50>         | [Obsidian LiveSync](https://github.com/vrtmrz/self-hosted-livesync-server)     | LiveSync couchdb backend for Obsidian                                                                                                                               | 5984  | | ||||||
| - [openbooks](https://github.com/evan-buss/openbooks) - Search and Download eBooks | | <img src="apps/octobot/metadata/logo.jpg" height="auto" width=50>                   | [Octobot](https://github.com/Drakkar-Software/OctoBot)                         | Octobot is a powerful open-source cryptocurrency trading robot.                                                                                                     | 8825  | | ||||||
| - [Outline](https://github.com/outline/outline) - A home for all your docs | | <img src="apps/odoo/metadata/logo.jpg" height="auto" width=50>                      | [Odoo](https://github.com/odoo/odoo)                                           | Open-source business management software with modular applications for streamlined operations.                                                                      | 8017  | | ||||||
| - [Overseerr](https://github.com/sct/overseerr) - Request management and media discovery tool for the Plex ecosystem | | <img src="apps/onedev/metadata/logo.jpg" height="auto" width=50>                    | [OneDev](https://code.onedev.io/onedev/server)                                 | Self-hosted Git Server with Kanban and CI/CD                                                                                                                        | 6610  | | ||||||
| - [Owncast](https://github.com/owncast/owncast) -  Take control over your live stream video by running it yourself. Streaming + chat out of the box.  | | <img src="apps/openbooks/metadata/logo.jpg" height="auto" width=50>                 | [openbooks](https://github.com/evan-buss/openbooks)                            | Search and Download eBooks                                                                                                                                          | 8152  | | ||||||
| - [Owncloud](https://github.com/owncloud/core) - A personal cloud which runs on your own server.  | | <img src="apps/outline/metadata/logo.jpg" height="auto" width=50>                   | [Outline](https://github.com/outline/outline)                                  | A home for all your docs                                                                                                                                            | 8404  | | ||||||
| - [PairDrop](https://github.com/schlagmichdoch/PairDrop) - Local file sharing in your browser. Inspired by Apple's AirDrop | | <img src="apps/overseerr/metadata/logo.jpg" height="auto" width=50>                 | [Overseerr](https://github.com/sct/overseerr)                                  | Request management and media discovery tool for the Plex ecosystem                                                                                                  | 8116  | | ||||||
| - [Paperless-ngx](https://github.com/paperless-ngx/paperless-ngx) - Document Management System (DMS) | | <img src="apps/owncast/metadata/logo.jpg" height="auto" width=50>                   | [Owncast](https://github.com/owncast/owncast)                                  | Take control over your live stream video by running it yourself. Streaming + chat out of the box.                                                                   | 8198  | | ||||||
| - [Penpot](https://github.com/penpot/penpot) - Open-Source design & prototyping platform. | | <img src="apps/owncloud/metadata/logo.jpg" height="auto" width=50>                  | [Owncloud](https://github.com/owncloud/core)                                   | A personal cloud which runs on your own server.                                                                                                                     | 8151  | | ||||||
| - [Peppermint](https://github.com/Peppermint-Lab/peppermint) - An open source ticket management & help desk solution. | | <img src="apps/pairdrop/metadata/logo.jpg" height="auto" width=50>                  | [PairDrop](https://github.com/schlagmichdoch/PairDrop)                         | Local file sharing in your browser. Inspired by Apple's AirDrop                                                                                                     | 8182  | | ||||||
| - [PhotoPrism](https://github.com/photoprism/photoprism) - AI-Powered Photos App for the Decentralized Web. We are on a mission to protect your freedom and privacy. | | <img src="apps/paperless-ngx/metadata/logo.jpg" height="auto" width=50>             | [Paperless-ngx](https://github.com/paperless-ngx/paperless-ngx)                | Document Management System (DMS)                                                                                                                                    | 8012  | | ||||||
| - [Pi-hole](https://github.com/pi-hole/pi-hole) - A black hole for Internet advertisements | | <img src="apps/penpot/metadata/logo.jpg" height="auto" width=50>                    | [Penpot](https://github.com/penpot/penpot)                                     | Open-Source design & prototyping platform.                                                                                                                          | 8645  | | ||||||
| - [Planka](https://github.com/plankanban/planka) - Free open source kanban board for workgroups. | | <img src="apps/peppermint/metadata/logo.jpg" height="auto" width=50>                | [Peppermint](https://github.com/Peppermint-Lab/peppermint)                     | An open source ticket management & help desk solution.                                                                                                              | 8216  | | ||||||
| - [Planning Poker](https://github.com/axeleroy/self-host-planning-poker) - Online planning poker for scrum master. | | <img src="apps/photoprism/metadata/logo.jpg" height="auto" width=50>                | [PhotoPrism](https://github.com/photoprism/photoprism)                         | AI-Powered Photos App for the Decentralized Web. We are on a mission to protect your freedom and privacy.                                                           | 8110  | | ||||||
| - [Plausible](https://github.com/plausible/analytics) - Simple, open-source, lightweight (< 1 KB) and privacy-friendly web analytics alternative to Google Analytics. | | <img src="apps/pihole/metadata/logo.jpg" height="auto" width=50>                    | [Pi-hole](https://github.com/pi-hole/pi-hole)                                  | A black hole for Internet advertisements                                                                                                                            | 8081  | | ||||||
| - [Plex](https://github.com/plexinc/pms-docker) - Stream Movies & TV Shows | | <img src="apps/pinchflat/metadata/logo.jpg" height="auto" width=50>                 | [Pinchflat](https://github.com/kieraneglin/pinchflat)                          | Your next YouTube media manager                                                                                                                                     | 8945  | | ||||||
| - [PodFetch](https://github.com/SamTV12345/PodFetch) - A sleek and efficient podcast downloader. | | <img src="apps/planka/metadata/logo.jpg" height="auto" width=50>                    | [Planka](https://github.com/plankanban/planka)                                 | Free open source kanban board for workgroups.                                                                                                                       | 8016  | | ||||||
| - [Portainer](https://github.com/portainer/portainer) - Making Docker and Kubernetes management easy. | | <img src="apps/planning-poker/metadata/logo.jpg" height="auto" width=50>            | [Planning Poker](https://github.com/axeleroy/self-host-planning-poker)         | Online planning poker for scrum master.                                                                                                                             | 8880  | | ||||||
| - [Postfix Mail Relay](https://github.com/shamil/docker-postfix-relay) - Simple SMTP relay for environments where you may have private servers with no Internet connection. | | <img src="apps/plausible/metadata/logo.jpg" height="auto" width=50>                 | [Plausible](https://github.com/plausible/analytics)                            | Simple, open-source, lightweight (< 1 KB) and privacy-friendly web analytics alternative to Google Analytics.                                                       | 8190  | | ||||||
| - [PrivateBin](https://github.com/PrivateBin/PrivateBin) - A minimalist, open source online pastebin where the server has zero knowledge of pasted data. Data is encrypted/decrypted in the browser using 256 bits AES. | | <img src="apps/plex/metadata/logo.jpg" height="auto" width=50>                      | [Plex](https://github.com/plexinc/pms-docker)                                  | Stream Movies & TV Shows                                                                                                                                            | 32400 | | ||||||
| - [Prowlarr](https://github.com/Prowlarr/Prowlarr/) - A torrent/usenet indexer manager/proxy | | <img src="apps/podfetch/metadata/logo.jpg" height="auto" width=50>                  | [PodFetch](https://github.com/SamTV12345/PodFetch)                             | A sleek and efficient podcast downloader.                                                                                                                           | 8177  | | ||||||
| - [ProxiTok](https://github.com/pablouser1/ProxiTok) - Open source alternative frontend for TikTok made using PHP  | | <img src="apps/portainer/metadata/logo.jpg" height="auto" width=50>                 | [Portainer](https://github.com/portainer/portainer)                            | Making Docker and Kubernetes management easy.                                                                                                                       | 9443  | | ||||||
| - [qBittorrent](https://github.com/qbittorrent/qBittorrent) - Fast, easy, and free BitTorrent client | | <img src="apps/postfix-relay/metadata/logo.jpg" height="auto" width=50>             | [Postfix Mail Relay](https://github.com/shamil/docker-postfix-relay)           | Simple SMTP relay for environments where you may have private servers with no Internet connection.                                                                  | 2525  | | ||||||
| - [qDirStat](https://github.com/linuxserver/docker-qdirstat) - A graphical disk usage analyzer | | <img src="apps/privatebin/metadata/logo.jpg" height="auto" width=50>                | [PrivateBin](https://github.com/PrivateBin/PrivateBin)                         | A minimalist, open source online pastebin where the server has zero knowledge of pasted data. Data is encrypted/decrypted in the browser using 256 bits AES.        | 8122  | | ||||||
| - [Radarr](https://github.com/Radarr/Radarr) - Movie collection manager for Usenet and BitTorrent users. | | <img src="apps/prowlarr/metadata/logo.jpg" height="auto" width=50>                  | [Prowlarr](https://github.com/Prowlarr/Prowlarr/)                              | A torrent/usenet indexer manager/proxy                                                                                                                              | 8109  | | ||||||
| - [Rallly](https://github.com/lukevella/rallly) - Scheduling and collaboration tool | | <img src="apps/proxitok/metadata/logo.jpg" height="auto" width=50>                  | [ProxiTok](https://github.com/pablouser1/ProxiTok)                             | Open source alternative frontend for TikTok made using PHP                                                                                                          | 8118  | | ||||||
| - [Readarr](https://github.com/Readarr/Readarr) - Book Manager and Automation (Sonarr for Ebooks) | | <img src="apps/qbittorrent/metadata/logo.jpg" height="auto" width=50>               | [qBittorrent](https://github.com/qbittorrent/qBittorrent)                      | Fast, easy, and free BitTorrent client                                                                                                                              | 8133  | | ||||||
| - [Recyclarr](https://github.com/recyclarr/recyclarr) - Sync TRaSH Guides. | | <img src="apps/qdirstat/metadata/logo.jpg" height="auto" width=50>                  | [qDirStat](https://github.com/linuxserver/docker-qdirstat)                     | A graphical disk usage analyzer                                                                                                                                     | 7125  | | ||||||
| - [Resilio](https://github.com/bt-sync) - Resilio Sync is a fast, reliable, and simple file sync and share solution, powered by P2P technology | | <img src="apps/radarr/metadata/logo.jpg" height="auto" width=50>                    | [Radarr](https://github.com/Radarr/Radarr)                                     | Movie collection manager for Usenet and BitTorrent users.                                                                                                           | 8088  | | ||||||
| - [Revolt Chat](https://github.com/revoltchat) - Open source user-first chat platform. | | <img src="apps/rallly/metadata/logo.jpg" height="auto" width=50>                    | [Rallly](https://github.com/lukevella/rallly)                                  | Scheduling and collaboration tool                                                                                                                                   | 8208  | | ||||||
| - [RomM](https://github.com/zurdi15/romm) - RomM (Rom Manager) is a web based retro roms manager integrated with IGDB. | | <img src="apps/readarr/metadata/logo.jpg" height="auto" width=50>                   | [Readarr](https://github.com/Readarr/Readarr)                                  | Book Manager and Automation (Sonarr for Ebooks)                                                                                                                     | 8112  | | ||||||
| - [RSS](https://github.com/ssddanbrown/rss) - A simple, opinionated, RSS feed aggregator. | | <img src="apps/recyclarr/metadata/logo.jpg" height="auto" width=50>                 | [Recyclarr](https://github.com/recyclarr/recyclarr)                            | Sync TRaSH Guides.                                                                                                                                                  | 1111  | | ||||||
| - [Ryot](https://github.com/IgnisDa/ryot) - Roll your own tracker! | | <img src="apps/resilio-sync/metadata/logo.jpg" height="auto" width=50>              | [Resilio](https://github.com/bt-sync)                                          | Resilio Sync is a fast, reliable, and simple file sync and share solution, powered by P2P technology                                                                | 8113  | | ||||||
| - [SABnzbd](https://github.com/sabnzbd/sabnzbd) - Sabnzbd makes Usenet as simple and streamlined as possible by automating everything we can | | <img src="apps/revolt/metadata/logo.jpg" height="auto" width=50>                    | [Revolt Chat](https://github.com/revoltchat)                                   | Open source user-first chat platform.                                                                                                                               | 8272  | | ||||||
| - [Scrypted](https://github.com/koush/scrypted) - High performance home video integration and automation platform | | <img src="apps/romm/metadata/logo.jpg" height="auto" width=50>                      | [RomM](https://github.com/zurdi15/romm)                                        | RomM (Rom Manager) is a web based retro roms manager integrated with IGDB.                                                                                          | 8178  | | ||||||
| - [SearXNG](https://github.com/searxng/searxng) - Privacy-respecting, hackable metasearch engine | | <img src="apps/rss/metadata/logo.jpg" height="auto" width=50>                       | [RSS](https://github.com/ssddanbrown/rss)                                      | A simple, opinionated, RSS feed aggregator.                                                                                                                         | 8141  | | ||||||
| - [SeedSync](https://github.com/ipsingh06/seedsync) - SeedSync is a tool to sync the files on a remote Linux server. | | <img src="apps/rsshub/metadata/logo.jpg" height="auto" width=50>                    | [RSSHub](https://github.com/DIYgod/RSSHub)                                     | Everything is RSSible with RSSHub                                                                                                                                   | 8223  | | ||||||
| - [Send](https://gitlab.com/timvisee/send) - Simple, private file sharing. https://send.vis.ee/ | | <img src="apps/ryot/metadata/logo.jpg" height="auto" width=50>                      | [Ryot](https://github.com/IgnisDa/ryot)                                        | Roll your own tracker!                                                                                                                                              | 8206  | | ||||||
| - [Serge](https://github.com/serge-chat/serge) - LLaMA made easy | | <img src="apps/sabnzbd/metadata/logo.jpg" height="auto" width=50>                   | [SABnzbd](https://github.com/sabnzbd/sabnzbd)                                  | Sabnzbd makes Usenet as simple and streamlined as possible by automating everything we can                                                                          | 8168  | | ||||||
| - [SFTPGo](https://github.com/drakkan/sftpgo) - Fully featured and highly configurable SFTP server | | <img src="apps/scrypted/metadata/logo.jpg" height="auto" width=50>                  | [Scrypted](https://github.com/koush/scrypted)                                  | High performance home video integration and automation platform                                                                                                     | 10443 | | ||||||
| - [Shlink](https://github.com/shlinkio/shlink) - Shlink is a self-hosted URL shortener | | <img src="apps/searxng/metadata/logo.jpg" height="auto" width=50>                   | [SearXNG](https://github.com/searxng/searxng)                                  | Privacy-respecting, hackable metasearch engine                                                                                                                      | 8127  | | ||||||
| - [Silverbullet](https://github.com/silverbulletmd/silverbullet) - SilverBullet is a creative space where you collect, create and expand your personal knowledge, while also letting you constantly evolve the tools you use to do so. | | <img src="apps/seedsync/metadata/logo.jpg" height="auto" width=50>                  | [SeedSync](https://github.com/ipsingh06/seedsync)                              | SeedSync is a tool to sync the files on a remote Linux server.                                                                                                      | 8800  | | ||||||
| - [SimpleX SMP](https://github.com/simplex-chat/simplexmq) - A reference implementation of the SimpleX Messaging Protocol for simplex queues over public networks. | | <img src="apps/send/metadata/logo.jpg" height="auto" width=50>                      | [Send](https://gitlab.com/timvisee/send)                                       | Simple, private file sharing. https://send.vis.ee/                                                                                                                  | 8126  | | ||||||
| - [SLSKD](https://github.com/slskd/slskd) - P2P downloads | | <img src="apps/serge/metadata/logo.jpg" height="auto" width=50>                     | [Serge](https://github.com/serge-chat/serge)                                   | LLaMA made easy                                                                                                                                                     | 8008  | | ||||||
| - [Sonarr](https://github.com/Sonarr/Sonarr) - TV show manager for Usenet and BitTorrent | | <img src="apps/sftpgo/metadata/logo.jpg" height="auto" width=50>                    | [SFTPGo](https://github.com/drakkan/sftpgo)                                    | Fully featured and highly configurable SFTP server                                                                                                                  | 8002  | | ||||||
| - [Speedtest Tracker](https://github.com/alexjustesen/speedtest-tracker) - Internet performance tracking application. | | <img src="apps/shlink/metadata/logo.jpg" height="auto" width=50>                    | [Shlink](https://github.com/shlinkio/shlink)                                   | Shlink is a self-hosted URL shortener                                                                                                                               | 8207  | | ||||||
| - [Spoolman](https://github.com/Donkie/Spoolman) - Keep track of your inventory of 3D-printer filament spools | | <img src="apps/silverbullet/metadata/logo.jpg" height="auto" width=50>              | [Silverbullet](https://github.com/silverbulletmd/silverbullet)                 | SilverBullet is a creative space where you collect, create and expand your personal knowledge, while also letting you constantly evolve the tools you use to do so. | 8214  | | ||||||
| - [Sshwifty](https://github.com/nirui/sshwifty) - Web SSH & Telnet (WebSSH & WebTelnet client) | | <img src="apps/simplex-smp/metadata/logo.jpg" height="auto" width=50>               | [SimpleX SMP](https://github.com/simplex-chat/simplexmq)                       | A reference implementation of the SimpleX Messaging Protocol for simplex queues over public networks.                                                               | 5223  | | ||||||
| - [Stalwart Mail](https://github.com/stalwartlabs) - Open-source mail server solution with JMAP, IMAP4, and SMTP support | | <img src="apps/slskd/metadata/logo.jpg" height="auto" width=50>                     | [SLSKD](https://github.com/slskd/slskd)                                        | P2P downloads                                                                                                                                                       | 5030  | | ||||||
| - [Stirling-PDF](https://github.com/Frooodle/Stirling-PDF/) - Powerful locally hosted web based PDF manipulation tool. | | <img src="apps/sonarr/metadata/logo.jpg" height="auto" width=50>                    | [Sonarr](https://github.com/Sonarr/Sonarr)                                     | TV show manager for Usenet and BitTorrent                                                                                                                           | 8098  | | ||||||
| - [Syncthing](https://github.com/syncthing) - Peer-to-peer file synchronization between your devices | | <img src="apps/speedtest-tracker/metadata/logo.jpg" height="auto" width=50>         | [Speedtest Tracker](https://github.com/alexjustesen/speedtest-tracker)         | Internet performance tracking application.                                                                                                                          | 8211  | | ||||||
| - [Tailscale](https://github.com/tailscale/tailscale) - The easiest, most secure way to use WireGuard and 2FA. | | <img src="apps/spoolman/metadata/logo.jpg" height="auto" width=50>                  | [Spoolman](https://github.com/Donkie/Spoolman)                                 | Keep track of your inventory of 3D-printer filament spools                                                                                                          | 7912  | | ||||||
| - [Tandoor](https://github.com/TandoorRecipes/recipes) - Recipe collection manager. | | <img src="apps/sshwifty/metadata/logo.jpg" height="auto" width=50>                  | [Sshwifty](https://github.com/nirui/sshwifty)                                  | Web SSH & Telnet (WebSSH & WebTelnet client)                                                                                                                        | 8274  | | ||||||
| - [Tasks.md](https://github.com/BaldissaraMatheus/Tasks.md) - A self-hosted, file based task management board. | | <img src="apps/stalwart-mail/metadata/logo.jpg" height="auto" width=50>             | [Stalwart Mail](https://github.com/stalwartlabs)                               | Open-source mail server solution with JMAP, IMAP4, and SMTP support                                                                                                 | 8677  | | ||||||
| - [Tautulli](https://github.com/Tautulli/Tautulli) - Monitoring and tracking tool for Plex Media Server. | | <img src="apps/stirling-pdf/metadata/logo.jpg" height="auto" width=50>              | [Stirling-PDF](https://github.com/Frooodle/Stirling-PDF/)                      | Powerful locally hosted web based PDF manipulation tool.                                                                                                            | 8234  | | ||||||
| - [Tooljet](https://github.com/ToolJet/ToolJet) - Alternative to retool to construct CRM dashboard | | <img src="apps/syncthing/metadata/logo.jpg" height="auto" width=50>                 | [Syncthing](https://github.com/syncthing)                                      | Peer-to-peer file synchronization between your devices                                                                                                              | 8090  | | ||||||
| - [Traefik Certs Dumper](https://github.com/kereis/traefik-certs-dumper) - Dumps Let's Encrypt certificates of a specified domain which Traefik stores in acme.json. | | <img src="apps/tailscale/metadata/logo.jpg" height="auto" width=50>                 | [Tailscale](https://github.com/tailscale/tailscale)                            | The easiest, most secure way to use WireGuard and 2FA.                                                                                                              | 8093  | | ||||||
| - [Transmission (VPN)](https://github.com/haugene/docker-transmission-openvpn) - BitTorrent client with VPN support. | | <img src="apps/tandoor/metadata/logo.jpg" height="auto" width=50>                   | [Tandoor](https://github.com/TandoorRecipes/recipes)                           | Recipe collection manager.                                                                                                                                          | 8341  | | ||||||
| - [Transmission](https://github.com/transmission/transmission) - Fast, easy, and free BitTorrent client | | <img src="apps/tasks-md/metadata/logo.jpg" height="auto" width=50>                  | [Tasks.md](https://github.com/BaldissaraMatheus/Tasks.md)                      | A self-hosted, file based task management board.                                                                                                                    | 8157  | | ||||||
| - [Trilium](https://github.com/zadam/trilium) - An open-source, self-hosted Notion alterative | | <img src="apps/tautulli/metadata/logo.jpg" height="auto" width=50>                  | [Tautulli](https://github.com/Tautulli/Tautulli)                               | Monitoring and tracking tool for Plex Media Server.                                                                                                                 | 8181  | | ||||||
| - [Tube Archivist](https://github.com/tubearchivist/tubearchivist) - Your self-hosted YouTube media server | | <img src="apps/tooljet/metadata/logo.jpg" height="auto" width=50>                   | [Tooljet](https://github.com/ToolJet/ToolJet)                                  | Alternative to retool to construct CRM dashboard                                                                                                                    | 9876  | | ||||||
| - [Umami](https://github.com/umami-software/umami) - Umami is a simple, fast, privacy-focused alternative to Google Analytics. | | <img src="apps/traefik-certs-dumper/metadata/logo.jpg" height="auto" width=50>      | [Traefik Certs Dumper](https://github.com/kereis/traefik-certs-dumper)         | Dumps Let's Encrypt certificates of a specified domain which Traefik stores in acme.json.                                                                           | 9999  | | ||||||
| - [Unmanic](https://github.com/Unmanic/unmanic) - Unmanic - Library Optimiser. | | <img src="apps/transmission-vpn/metadata/logo.jpg" height="auto" width=50>          | [Transmission (VPN)](https://github.com/haugene/docker-transmission-openvpn)   | BitTorrent client with VPN support.                                                                                                                                 | 9091  | | ||||||
| - [Uptime Kuma](https://github.com/louislam/uptime-kuma) - A fancy self-hosted monitoring tool. | | <img src="apps/transmission/metadata/logo.jpg" height="auto" width=50>              | [Transmission](https://github.com/transmission/transmission)                   | Fast, easy, and free BitTorrent client                                                                                                                              | 8089  | | ||||||
| - [VaultWarden](https://github.com/dani-garcia/vaultwarden) - All your passwords in your control! | | <img src="apps/trilium/metadata/logo.jpg" height="auto" width=50>                   | [Trilium](https://github.com/zadam/trilium)                                    | An open-source, self-hosted Notion alterative                                                                                                                       | 8267  | | ||||||
| - [ViewTube](https://github.com/ViewTube/viewtube) - The open source, privacy-conscious way to enjoy your favorite YouTube content. | | <img src="apps/tubearchivist/metadata/logo.jpg" height="auto" width=50>             | [Tube Archivist](https://github.com/tubearchivist/tubearchivist)               | Your self-hosted YouTube media server                                                                                                                               | 8120  | | ||||||
| - [Vikunja](https://kolaente.dev/vikunja) - The Todo-app to organize your life. | | <img src="apps/umami/metadata/logo.jpg" height="auto" width=50>                     | [Umami](https://github.com/umami-software/umami)                               | Umami is a simple, fast, privacy-focused alternative to Google Analytics.                                                                                           | 8147  | | ||||||
| - [Wallos](https://github.com/ellite/Wallos) - Open-Source Personal Subscription Tracker | | <img src="apps/unmanic/metadata/logo.jpg" height="auto" width=50>                   | [Unmanic](https://github.com/Unmanic/unmanic)                                  | Unmanic - Library Optimiser.                                                                                                                                        | 8256  | | ||||||
| - [Wekan](https://github.com/wekan/wekan) - Open-Source, customizable, and privacy-focused kanban | | <img src="apps/uptime-kuma/metadata/logo.jpg" height="auto" width=50>               | [Uptime Kuma](https://github.com/louislam/uptime-kuma)                         | A fancy self-hosted monitoring tool.                                                                                                                                | 8125  | | ||||||
| - [Wireguard](https://github.com/WeeJeWel/wg-easy/) - VPN server for your homeserver | | <img src="apps/vaultwarden/metadata/logo.jpg" height="auto" width=50>               | [VaultWarden](https://github.com/dani-garcia/vaultwarden)                      | All your passwords in your control!                                                                                                                                 | 8107  | | ||||||
| - [Whisparr](https://github.com/Whisparr/Whisparr) - Adult movie collection manager. | | <img src="apps/viewtube/metadata/logo.jpg" height="auto" width=50>                  | [ViewTube](https://github.com/ViewTube/viewtube)                               | The open source, privacy-conscious way to enjoy your favorite YouTube content.                                                                                      | 8180  | | ||||||
| - [Whoogle Search](https://github.com/benbusby/whoogle-search) - A self-hosted, ad-free, privacy-respecting metasearch engine. | | <img src="apps/vikunja/metadata/logo.jpg" height="auto" width=50>                   | [Vikunja](https://kolaente.dev/vikunja)                                        | The Todo-app to organize your life.                                                                                                                                 | 8135  | | ||||||
| - [WikiJS](https://github.com/requarks/wiki) - A modern and powerful wiki app built on Node.js | | <img src="apps/wallos/metadata/logo.jpg" height="auto" width=50>                    | [Wallos](https://github.com/ellite/Wallos)                                     | Open-Source Personal Subscription Tracker                                                                                                                           | 8222  | | ||||||
| - [Windows](https://github.com/dockur/windows/) - Full windows vm in your browser | | <img src="apps/wekan/metadata/logo.jpg" height="auto" width=50>                     | [Wekan](https://github.com/wekan/wekan)                                        | Open-Source, customizable, and privacy-focused kanban                                                                                                               | 8678  | | ||||||
| - [Wizarr](https://github.com/Wizarrrr/wizarr) - Wizarr is an automatic user invitation system for Plex and Jellyfin. | | <img src="apps/wg-easy/metadata/logo.jpg" height="auto" width=50>                   | [Wireguard](https://github.com/WeeJeWel/wg-easy/)                              | VPN server for your homeserver                                                                                                                                      | 8082  | | ||||||
| - [WordPress](https://github.com/WordPress/WordPress) - Popular CMS for websites and blogs | | <img src="apps/whisparr/metadata/logo.jpg" height="auto" width=50>                  | [Whisparr](https://github.com/Whisparr/Whisparr)                               | Adult movie collection manager.                                                                                                                                     | 6969  | | ||||||
| - [Your Spotify](https://github.com/Yooooomi/your_spotify) - Self hosted Spotify tracking dashboard. | | <img src="apps/whoogle/metadata/logo.jpg" height="auto" width=50>                   | [Whoogle Search](https://github.com/benbusby/whoogle-search)                   | A self-hosted, ad-free, privacy-respecting metasearch engine.                                                                                                       | 8255  | | ||||||
| - [ZeroTier](https://github.com/zerotier/ZeroTierOne) - Easy to use zero configuration VPN. | | <img src="apps/wikijs/metadata/logo.jpg" height="auto" width=50>                    | [WikiJS](https://github.com/requarks/wiki)                                     | A modern and powerful wiki app built on Node.js                                                                                                                     | 8148  | | ||||||
| - [Zigbee2MQTT](https://github.com/Koenkk/zigbee2mqtt) - Zigbee to MQTT bridge | | <img src="apps/windows/metadata/logo.jpg" height="auto" width=50>                   | [Windows](https://github.com/dockur/windows/)                                  | Full windows vm in your browser                                                                                                                                     | 8006  | | ||||||
| - [Zipline](https://github.com/diced/zipline) - A ShareX/file upload server that is easy to use, packed with features, and with an easy setup!   | | <img src="apps/wizarr/metadata/logo.jpg" height="auto" width=50>                    | [Wizarr](https://github.com/Wizarrrr/wizarr)                                   | Wizarr is an automatic user invitation system for Plex and Jellyfin.                                                                                                | 5690  | | ||||||
|  | | <img src="apps/wordpress/metadata/logo.jpg" height="auto" width=50>                 | [WordPress](https://github.com/WordPress/WordPress)                            | Popular CMS for websites and blogs                                                                                                                                  | 8213  | | ||||||
|  | | <img src="apps/your-spotify/metadata/logo.jpg" height="auto" width=50>              | [Your Spotify](https://github.com/Yooooomi/your_spotify)                       | Self hosted Spotify tracking dashboard.                                                                                                                             | 8103  | | ||||||
|  | | <img src="apps/zerotier/metadata/logo.jpg" height="auto" width=50>                  | [ZeroTier](https://github.com/zerotier/ZeroTierOne)                            | Easy to use zero configuration VPN.                                                                                                                                 | 9993  | | ||||||
|  | | <img src="apps/zigbee2mqtt/metadata/logo.jpg" height="auto" width=50>               | [Zigbee2MQTT](https://github.com/Koenkk/zigbee2mqtt)                           | Zigbee to MQTT bridge                                                                                                                                               | 8290  | | ||||||
|  | | <img src="apps/zipline/metadata/logo.jpg" height="auto" width=50>                   | [Zipline](https://github.com/diced/zipline)                                    | A ShareX/file upload server that is easy to use, packed with features, and with an easy setup!                                                                      | 8139  | | ||||||
| 
 | 
 | ||||||
| ## How to sumbit an app | ## How to sumbit an app | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -4,6 +4,8 @@ This is the official repository for the Tipi App Store. It contains all the apps | ||||||
| 
 | 
 | ||||||
| ## Apps available | ## Apps available | ||||||
| 
 | 
 | ||||||
|  | | Icon | Name | Description | Port | | ||||||
|  | | ---- | ---- | ----------- | ---- | | ||||||
| <!appsList> | <!appsList> | ||||||
| 
 | 
 | ||||||
| ## How to sumbit an app | ## How to sumbit an app | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Stavros
						Stavros