diff --git a/client/src/api/cron.demo.jsx b/client/src/api/cron.demo.jsx new file mode 100644 index 00000000..7506352b --- /dev/null +++ b/client/src/api/cron.demo.jsx @@ -0,0 +1,150 @@ +import wrap from './wrap'; + +function listen() { +} + +function run(scheduler, name) { + return new Promise((resolve, reject) => { + setTimeout(() => { + resolve({ + "status": "ok", + })}, + 1000 + ); + }); +} + +function stop(scheduler, name) { + return new Promise((resolve, reject) => { + setTimeout(() => { + resolve({ + "status": "ok", + })}, + 1000 + ); + }); +} + +function deleteJob(name) { + return new Promise((resolve, reject) => { + setTimeout(() => { + resolve({ + "status": "ok", + })}, + 500 + ); + }); +} + +function list() { + return new Promise((resolve, reject) => { + setTimeout(() => { + resolve({ + "data": { + "Custom": { + "Long Job": { + "Disabled": false, + "Scheduler": "Custom", + "Name": "Long Job", + "Cancellable": true, + "Crontab": "0 1/2 * * * *", + "Running": true, + "LastStarted": "2024-01-01T00:00:00Z", + "LastRun": "0001-01-01T00:00:00Z", + "LastRunSuccess": false, + "Logs": [ + "2024-01-01T00:00:00Z: Started", + "2024-01-01T20:00:00Z: Some stuff happening...", + "2024-01-01T30:00:00Z: Some stuff happening...", + ], + "Container": "" + }, + "Short job": { + "Disabled": false, + "Scheduler": "Custom", + "Name": "Short job", + "Cancellable": true, + "Crontab": "0 1 * * * *", + "Running": false, + "LastStarted": "2024-01-01T00:00:00Z", + "LastRun": "2024-01-01T00:01:10Z", + "LastRunSuccess": true, + "Logs": [ + "2024-01-01T00:01:10Z: Started", + "2024-01-01T00:01:10Z: Finished" + ], + "Container": "" + } + }, + "SnapRAID": { + "SnapRAID scrub Storage Parity": { + "Disabled": false, + "Scheduler": "SnapRAID", + "Name": "SnapRAID scrub Storage Parity", + "Cancellable": true, + "Crontab": "* 0 4 */2 * *", + "Running": false, + "LastStarted": "0001-01-01T00:00:00Z", + "LastRun": "0001-01-01T00:00:00Z", + "LastRunSuccess": false, + "Logs": null, + "Container": "" + }, + "SnapRAID sync Storage Parity": { + "Disabled": false, + "Scheduler": "SnapRAID", + "Name": "SnapRAID sync Storage Parity", + "Cancellable": true, + "Crontab": "* 0 2 * * *", + "Running": false, + "LastStarted": "0001-01-01T00:00:00Z", + "LastRun": "0001-01-01T00:00:00Z", + "LastRunSuccess": false, + "Logs": null, + "Container": "" + } + } + }, + "status": "OK" + })}, + 500 + ); + }); +} + +function get(scheduler, name) { + return new Promise((resolve, reject) => { + setTimeout(() => { + resolve({ + "data": { + "Disabled": false, + "Scheduler": "Custom", + "Name": "Long Job", + "Cancellable": true, + "Crontab": "0 1/2 * * * *", + "Running": true, + "LastStarted": "2024-01-01T00:00:00Z", + "LastRun": "0001-01-01T00:00:00Z", + "LastRunSuccess": false, + "Logs": [ + "2024-01-01T00:00:00Z: Started", + "2024-01-01T20:00:00Z: Some stuff happening...", + "2024-01-01T30:00:00Z: Some stuff happening...", + ], + "Container": "" + }, + "status": "ok", + })}, + 500 + ); + }); +} + +export { + listen, + list, + run, + stop, + get, + deleteJob, +} diff --git a/client/src/api/demo.config.json b/client/src/api/demo.config.json index e5714971..96878546 100644 --- a/client/src/api/demo.config.json +++ b/client/src/api/demo.config.json @@ -312,6 +312,18 @@ "Hostname": "xxxxxxxxxxxxx", "SSLEmail": "myemail@gmail.com" }, + "MarketConfig": { + "Sources": [ + { + "Name": "CasaOS", + "Url": "https://azukaar.github.io/cosmos-casaos-store/index.json" + }, + { + "Name": "TinyActive", + "Url": "https://cosmos.manhtuong.net" + } + ] + }, "MonitoringAlerts": { "Anti Crypto-Miner": { "Name": "Anti Crypto-Miner", @@ -505,6 +517,40 @@ } }, "ConstellationHostname": "vpn.domain.com" + }, + "Storage": { + "SnapRAIDs": [ + { + "Name": "Storage Parity", + "Enabled": true, + "Data": { + "disk0": "/var/mnt/sdc1", + "disk1": "/var/mnt/sdd1" + }, + "Parity": [ + "/var/mnt/sda1" + ], + "SyncCrontab": "* 0 2 * * *", + "ScrubCrontab": "* 0 4 */2 * *", + "CheckOnFix": false + } + ] + }, + "CRON": { + "Long Job": { + "Enabled": true, + "Name": "Long Job", + "Crontab": "0 1/2 * * * *", + "Command": "sleep 5 \u0026\u0026 echo \"hello world 2\"", + "Container": "" + }, + "Short job": { + "Enabled": true, + "Name": "Short job", + "Crontab": "0 1 * * * *", + "Command": "ls", + "Container": "memos" + } } }, "updates": { diff --git a/client/src/api/index.jsx b/client/src/api/index.jsx index a3ea363c..bb5b418e 100644 --- a/client/src/api/index.jsx +++ b/client/src/api/index.jsx @@ -16,6 +16,8 @@ import * as indexDemo from './index.demo'; import * as marketDemo from './market.demo'; import * as constellationDemo from './constellation.demo'; import * as metricsDemo from './metrics.demo'; +import * as storageDemo from './storage.demo'; +import * as cronDemo from './cron.demo'; import wrap from './wrap'; import { redirectToLocal } from '../utils/indexs'; @@ -236,6 +238,8 @@ if(isDemo) { uploadImage = indexDemo.uploadImage; constellation = constellationDemo; metrics = metricsDemo; + storage = storageDemo; + cron = cronDemo; } export { diff --git a/client/src/api/market.demo.json b/client/src/api/market.demo.json index 071588a8..ab908e77 100644 --- a/client/src/api/market.demo.json +++ b/client/src/api/market.demo.json @@ -125,6 +125,3734 @@ } ], "all": { + "CasaOS": [ + { + "name": "2FAuth", + "description": "A web app to manage your Two-Factor Authentication (2FA) accounts and generate their security codes", + "url": "", + "longDescription": "2FAuth is a web based self-hosted alternative to One Time Passcode (OTP) generators like Google Authenticator, designed for both mobile and desktop.", + "tags": [ + "Utilities" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/2FAuth/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/2FAuth/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/2FAuth/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/2FAuth/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/2FAuth/docker-compose.yml", + "supported_architectures": [ + "amd64", + "386", + "arm64", + "arm" + ] + }, + { + "name": "AdGuardHome", + "description": "Network-wide ads & trackers blocking DNS server", + "url": "", + "longDescription": "AdGuard Home is a network-wide software for blocking ads and tracking. After you set it up, it'll cover all your home devices, and you won't need any client-side software for that. Learn more on our official Github repository.", + "tags": [ + "Network" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/AdGuardHome/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/AdGuardHome/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/AdGuardHome/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/AdGuardHome/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/AdGuardHome/docker-compose.yml", + "supported_architectures": [ + "386", + "amd64", + "arm", + "arm64", + "ppc64le" + ] + }, + { + "name": "Adminer", + "description": "Database management in a single PHP file", + "url": "", + "longDescription": "Adminer (formerly phpMinAdmin) is a full-featured database management tool written in PHP. Conversely to phpMyAdmin, it consist of a single file ready to deploy to the target server. Adminer is available for MySQL, PostgreSQL, SQLite, MS SQL, Oracle, Firebird, SimpleDB, Elasticsearch and MongoDB.", + "tags": [ + "Database" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Adminer/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Adminer/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Adminer/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Adminer/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Adminer/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm", + "arm64" + ] + }, + { + "name": "Alist", + "description": "A file list program that supports multiple storage", + "url": "", + "longDescription": "A file list program that supports multiple storage, powered by Gin and Solidjs.", + "tags": [ + "Cloud" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Alist/screenshots/screenshot-1.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Alist/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Alist/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm", + "arm64" + ] + }, + { + "name": "Anaconda3", + "description": "Your machine learning Env work with Jupyter Lab", + "url": "", + "longDescription": "Your machine learning Env work with Jupyter Lab", + "tags": [ + "AI" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Anaconda3/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Anaconda3/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Anaconda3/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Anaconda3/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Anaconda3/docker-compose.yml", + "supported_architectures": [ + "amd64" + ] + }, + { + "name": "Autobrr", + "description": "Modern, easy to use download automation for torrents and usenet.", + "url": "", + "longDescription": "Autobrr is the modern download automation tool for torrents and usenet. With inspiration and ideas from tools like trackarr, autodl-irssi and flexget we built one tool that can do it all, and then some.", + "tags": [ + "Media" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Autobrr/screenshots/screenshot-1.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Autobrr/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Autobrr/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm", + "arm64" + ] + }, + { + "name": "Bazarr", + "description": "Letter generators for Sonarr and Radarr", + "url": "", + "longDescription": "Bazarr is a companion application to Sonarr and Radarr. It can manage and download subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you.", + "tags": [ + "Media" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Bazarr/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Bazarr/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Bazarr/screenshots/screenshot-3.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Bazarr/screenshots/screenshot-4.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Bazarr/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Bazarr/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm", + "arm64" + ] + }, + { + "name": "Calibre-web", + "description": "Web app for browsing, reading and downloading eBooks stored in a Calibre database", + "url": "", + "longDescription": "Calibre-web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database. It is also possible to integrate google drive and edit metadata and your calibre library through the app itself.", + "tags": [ + "Media" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Calibre-web/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Calibre-web/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Calibre-web/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Calibre-web/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Calibre-web/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "ChatGPT-Next-Web", + "description": "A well-designed cross-platform ChatGPT UI.", + "url": "", + "longDescription": "An intelligent chat application based on ChatGPT, supports fast deployment, Markdown, beautiful UI, fluid response, privacy and security, and allows customization of preset roles for quick creation, sharing, and debugging of personalized conversations.", + "tags": [ + "Utilities" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/ChatGPT-Next-Web/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/ChatGPT-Next-Web/screenshots/screenshot-2.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/ChatGPT-Next-Web/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/ChatGPT-Next-Web/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "ChatbotUI", + "description": "Open source chat UI for AI models", + "url": "", + "longDescription": "Chatbot UI is an open source chat UI for AI models.", + "tags": [ + "Chat" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/ChatbotUI/screenshots/screenshot-1.jpg" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/ChatbotUI/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/ChatbotUI/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "CloudBeaver", + "description": "Cloud Database Manager.", + "url": "", + "longDescription": "CloudBeaver is a web-based database GUI tool which provides rich web interface. You can use it to manage PostgreSQL, MySQL, MariaDB, SQL Server, Oracle, DB2, Firebird, H2, Trino.", + "tags": [ + "Developer" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/CloudBeaver/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/CloudBeaver/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/CloudBeaver/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/CloudBeaver/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/CloudBeaver/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Cloudflared", + "description": "A tunneling daemon by Cloudflare that safely exposes your web servers into the internet.", + "url": "", + "longDescription": "Cloudflare Tunnel offers an easy way to expose web servers securely to the internet, without opening up firewall ports and configuring ACLs. Cloudflare Tunnel also ensures requests route through Cloudflare before reaching the web server, so you can be sure attack traffic is stopped with Cloudflare’s WAF and Unmetered DDoS mitigation, and authenticated with Access if you’ve enabled those features for your account.", + "tags": [ + "Developer" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Cloudflared/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Cloudflared/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Cloudflared/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Cloudflared/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Cloudflared/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm", + "arm64" + ] + }, + { + "name": "Crafty", + "description": "Take control of your Minecraft servers.", + "url": "", + "longDescription": "Crafty is an open source Minecraft control panel built using Tornado and AdminLTE, featuring server scheduling, a interactive console and the ability to run almost any type of Minecraft server", + "tags": [ + "Games" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Crafty/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Crafty/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Crafty/screenshots/screenshot-3.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Crafty/screenshots/screenshot-4.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Crafty/screenshots/screenshot-5.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Crafty/screenshots/screenshot-6.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Crafty/screenshots/screenshot-7.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Crafty/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Crafty/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm", + "arm64" + ] + }, + { + "name": "Databag", + "description": "Messenger for the Decentralized Web", + "url": "", + "longDescription": "Databag is a federated chat app for self-hosting that focuses on user privacy and security; the service includes clients for iOS, Android, and browser.", + "tags": [ + "Chat" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Databag/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Databag/screenshots/screenshot-2.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Databag/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Databag/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Ddns-go", + "description": "Simple and easy to use DDNS", + "url": "", + "longDescription": "Simple and easy to use DDNS. automatically update domain name resolution to public IP (support Ali cloud, Tencent cloud, Dnspod, Cloudflare, Callback, Huawei cloud, Baidu cloud, Porkbun, GoDaddy, Google Domain).", + "tags": [ + "Network" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Ddns-go/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Ddns-go/screenshots/screenshot-2.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Ddns-go/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Ddns-go/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm", + "arm64" + ] + }, + { + "name": "Deluge", + "description": "A lightweight and free BitTorrent client.", + "url": "", + "longDescription": "Deluge contains the common features to BitTorrent clients such as Protocol Encryption, DHT, Local Peer Discovery (LSD), Peer Exchange (PEX), UPnP, NAT-PMP, Proxy support, Web seeds, global and per-torrent speed limits. As Deluge heavily utilises the libtorrent library it has a comprehensive list of the features provided.", + "tags": [ + "Downloader" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Deluge/screenshots/screenshot-1.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Deluge/screenshots/screenshot-2.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Deluge/screenshots/screenshot-3.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Deluge/screenshots/screenshot-4.jpg" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Deluge/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Deluge/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Duplicati", + "description": "Store securely encrypted backups in the cloud!", + "url": "", + "longDescription": "Duplicati is a free, open source, backup client that securely stores encrypted, incremental, compressed backups on cloud storage services and remote file servers.", + "tags": [ + "Cloud" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Duplicati/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Duplicati/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Duplicati/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Duplicati/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Duplicati/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "ESPHome", + "description": "Home Automation systems", + "url": "", + "longDescription": "ESPHome is a system to control your microcontrollers by simple yet powerful configuration files and control them remotely through Home Automation systems.", + "tags": [ + "Home Automation" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/ESPHome/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/ESPHome/screenshots/screenshot-2.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/ESPHome/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/ESPHome/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64", + "arm" + ] + }, + { + "name": "Emby", + "description": "TAKE YOUR MEDIA ANYWHERE WITH EMBY", + "url": "", + "longDescription": "Bringing all of your home videos, music, and photos together into one place has never been easier. Your personal Emby Server automatically converts and streams your media on-the-fly to play on any device.", + "tags": [ + "Media" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Emby/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Emby/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Emby/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Emby/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Emby/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Embystat", + "description": "Calculate all kinds of statistics from your (local) Emby or Jellyfin server", + "url": "", + "longDescription": "EmbyStat is a personal web server that can calculate all kinds of statistics from your (local) Emby or Jellyfin server. Just install this on your server and let him calculate all kinds of fun stuff. This project is still in Alpha phase, but feel free to pull in on your computer and test it out yourself. When the time is right I will host a full informational website/release for common platforms and Wiki pages.", + "tags": [ + "Media" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Embystat/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Embystat/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Embystat/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Embystat/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Embystat/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "EmulatorJS", + "description": "EmulatorJS is a Docker-based emulator application that can simulate various operating systems and device environments within containers for development, testing, and learning purposes.", + "url": "", + "longDescription": "EmulatorJS is a Docker-based emulator application that can simulate various operating systems and device environments within containers for development, testing, and learning purposes.", + "tags": [ + "Utilities" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/EmulatorJS/screenshots/screenshot-1.jpg" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/EmulatorJS/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/EmulatorJS/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "FileBrowser", + "description": "Upload, delete, preview, rename, edit and share your files.", + "url": "", + "longDescription": "File Browser - Webbased File Browser including sharing functions etc.", + "tags": [ + "Cloud" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/FileBrowser/screenshots/screenshot-1.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/FileBrowser/screenshots/screenshot-2.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/FileBrowser/screenshots/screenshot-3.jpg" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/FileBrowser/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/FileBrowser/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64", + "arm" + ] + }, + { + "name": "Filedrop", + "description": "FileDrop is a free, open source file sharing service", + "url": "", + "longDescription": "FileDrop is a self-hosted file sharing service that allows you to easily share files with family, friends, or colleagues. It's been designed to be easy to use and light on resources.\n", + "tags": [ + "Cloud" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Filedrop/screenshots/screenshot-1.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Filedrop/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Filedrop/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Gitea", + "description": "Git with a cup of tea", + "url": "", + "longDescription": "Gitea is a community managed lightweight code hosting solution written in Go.", + "tags": [ + "Developer" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Gitea/screenshots/screenshot-1.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Gitea/screenshots/screenshot-2.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Gitea/screenshots/screenshot-3.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Gitea/screenshots/screenshot-4.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Gitea/screenshots/screenshot-5.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Gitea/screenshots/screenshot-6.jpg" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Gitea/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Gitea/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Grafana", + "description": "Grafana is a complete observability stack that allows you to monitor and analyze metrics, logs and traces. It allows you to query, visualize, alert on and understand your data no matter where it is stored.\n", + "url": "", + "longDescription": "Grafana open source is open source visualization and analytics software.Visualizations: Fast and flexible client side graphs with a multitude of options. Panel plugins offer many different ways to visualize metrics and logs. Dynamic Dashboards: Create dynamic & reusable dashboards with template variables that appear as dropdowns at the top of the dashboard. Explore Metrics: Explore your data through ad-hoc queries and dynamic drilldown. Split view and compare different time ranges, queries and data sources side by side. Explore Logs: Experience the magic of switching from metrics to logs with preserved label filters. Quickly search through all your logs or streaming them live. Alerting: Visually define alert rules for your most important metrics. Grafana will continuously evaluate and send notifications to systems like Slack, PagerDuty, VictorOps, OpsGenie. Mixed Data Sources: Mix different data sources in the same graph! You can specify a data source on a per-query basis. This works for even custom datasources.\n", + "tags": [ + "Network" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Grafana/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Grafana/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Grafana/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Grafana/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Grafana/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Handbrake", + "description": "Liberate your videos and unleash infinite possibilities.", + "url": "", + "longDescription": "Handbrake is a Docker-based application for video transcoding and compression, offering powerful and flexible multimedia processing across multiple platforms.", + "tags": [ + "Media" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Handbrake/screenshots/screenshot-1.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Handbrake/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Handbrake/docker-compose.yml", + "supported_architectures": [ + "amd64" + ] + }, + { + "name": "HoloPlay", + "description": "A web app to listen Youtube audio source.", + "url": "", + "longDescription": "HoloPlay is a web based self-hosted using Invidious API for listening Youtube audio source.", + "tags": [ + "WEB" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/HoloPlay/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/HoloPlay/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/HoloPlay/screenshots/screenshot-3.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/HoloPlay/screenshots/screenshot-4.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/HoloPlay/screenshots/screenshot-5.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/HoloPlay/screenshots/screenshot-6.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/HoloPlay/screenshots/screenshot-7.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/HoloPlay/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/HoloPlay/docker-compose.yml", + "supported_architectures": [ + "amd64", + "386", + "arm64", + "arm" + ] + }, + { + "name": "HomeAssistant", + "description": "Awaken your home", + "url": "", + "longDescription": "Open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server.", + "tags": [ + "Home Automation" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/HomeAssistant/screenshots/screenshot-1.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/HomeAssistant/screenshots/screenshot-2.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/HomeAssistant/screenshots/screenshot-3.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/HomeAssistant/screenshots/screenshot-4.jpg" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/HomeAssistant/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/HomeAssistant/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Homebridge", + "description": "HomeKit support for the impatient.", + "url": "", + "longDescription": "Homebridge is a lightweight NodeJS server you can run on your home network that emulates the iOS HomeKit API. It supports Plugins, which are community-contributed modules that provide a basic bridge from HomeKit to various 3rd-party APIs provided by manufacturers of \"smart home\" devices.", + "tags": [ + "Home Automation" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Homebridge/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Homebridge/screenshots/screenshot-2.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Homebridge/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Homebridge/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm", + "arm64" + ] + }, + { + "name": "JDownloader2", + "description": "Free & open-source download management tool", + "url": "", + "longDescription": "JDownloader is a free, open-source download management tool with a huge community that makes downloading as easy and fast as it should be. Users can start, stop or pause downloads, set bandwith limitations, auto-extract archives and much more. It's an easy-to-extend framework that can save hours of your valuable time every day!", + "tags": [ + "Utilities" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/JDownloader2/screenshots/screenshot-1.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/JDownloader2/screenshots/screenshot-2.jpg" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/JDownloader2/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/JDownloader2/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Jackett", + "description": "Jackett works as a proxy server", + "url": "", + "longDescription": "it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar3, Lidarr, DuckieTV, qBittorrent, Nefarious etc.) into tracker-site-specific http queries, parses the html or json response, and then sends results back to the requesting software. This allows for getting recent uploads (like RSS) and performing searches. Jackett is a single repository of maintained indexer scraping & translation logic - removing the burden from other apps.", + "tags": [ + "Network" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Jackett/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Jackett/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Jackett/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Jackett/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Jackett/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Jellyfin", + "description": "Puts you in control of your media.", + "url": "", + "longDescription": "Jellyfin enables you to collect, manage, and stream your media. Run the Jellyfin server on your system and gain access to the leading free-software entertainment system, bells and whistles included.", + "tags": [ + "Media" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Jellyfin/screenshots/screenshot-1.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Jellyfin/screenshots/screenshot-2.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Jellyfin/screenshots/screenshot-3.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Jellyfin/screenshots/screenshot-4.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Jellyfin/screenshots/screenshot-5.jpg" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Jellyfin/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Jellyfin/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "LabelStudio", + "description": "Label Studio is an open source data labeling tool. It lets you label data types like audio, text, images, videos, and time series with a simple and straightforward UI and export to various model formats. It can be used to prepare raw data or improve existing training data to get more accurate ML models.", + "url": "", + "longDescription": "Label Studio is an open source data labeling tool. It lets you label data types like audio, text, images, videos, and time series with a simple and straightforward UI and export to various model formats. It can be used to prepare raw data or improve existing training data to get more accurate ML models.", + "tags": [ + "AI" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/LabelStudio/screenshots/screenshot-1.jpg" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/LabelStudio/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/LabelStudio/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Lazylibrarian", + "description": "eBook Auto Downloader", + "url": "", + "longDescription": "Lazylibrarian is a program to follow authors and grab metadata for all your digital reading needs. It uses a combination of Goodreads Librarything and optionally GoogleBooks as sources for author info and book info. This container is based on the DobyTang fork.", + "tags": [ + "Downloader" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Lazylibrarian/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Lazylibrarian/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Lazylibrarian/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Lazylibrarian/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Lazylibrarian/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Lidarr", + "description": "Music collection manager for Usenet and BitTorrent users", + "url": "", + "longDescription": "Lidarr is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new albums from your favorite artists and will interface with clients and indexers to grab, sort, and rename them. It can also be configured to automatically upgrade the quality of existing files in the library when a better quality format becomes available.", + "tags": [ + "Downloader" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Lidarr/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Lidarr/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Lidarr/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Lidarr/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Lidarr/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Lucky", + "description": "Powerful networking tool", + "url": "", + "longDescription": "A powerful tool for port forwarding, reverse proxy, dynamic DNS, wake-on-LAN, IPv4 NAT traversal, webdav services, task scheduling, and automatic certificate management.", + "tags": [ + "Network" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Lucky/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Lucky/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Lucky/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Lucky/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Lucky/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm", + "arm64" + ] + }, + { + "name": "MariaDB", + "description": "MariaDB Server is one of the most popular database servers in the world. It's made by the original developers of MySQL and guaranteed to stay open source.", + "url": "", + "longDescription": "MariaDB Server is one of the most popular open source relational databases. It’s made by the original developers of MySQL and guaranteed to stay open source. It is part of most cloud offerings and the default in most Linux distributions.\n\nIt is built upon the values of performance, stability, and openness, and MariaDB Foundation ensures contributions will be accepted on technical merit. Recent new functionality includes advanced clustering with Galera Cluster 4, compatibility features with Oracle Database and Temporal Data Tables, allowing one to query the data as it stood at any point in the past.\n", + "tags": [ + "Developer" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/MariaDB/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/MariaDB/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "MediaFetchPro", + "description": "Media Fetch PRO is an application to download video of youtube, bilibili and more websites in future with metadata to jellyfin, emby, plex and more softwares in future.", + "url": "", + "longDescription": "Media Fetch PRO is an application to download video of youtube, bilibili and more websites in future with metadata to jellyfin, emby, plex and more softwares in future. Project - https://github.com/Media-Fetch-Pro/Media-Fetch-Pro", + "tags": [ + "Media" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/MediaFetchPro/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/MediaFetchPro/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/MediaFetchPro/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/MediaFetchPro/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/MediaFetchPro/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Medusa", + "description": "Automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.", + "url": "", + "longDescription": "Automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.", + "tags": [ + "Media" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Medusa/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Medusa/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Medusa/screenshots/screenshot-3.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Medusa/screenshots/screenshot-4.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Medusa/screenshots/screenshot-5.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Medusa/screenshots/screenshot-6.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Medusa/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Medusa/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64", + "arm" + ] + }, + { + "name": "Memos", + "description": "Memos is a lightweight, self-hosted memo hub. Open Source and Free forever.", + "url": "", + "longDescription": "Memos is a lightweight, self-hosted memo hub. Open Source and Free forever.", + "tags": [ + "Notes" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Memos/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Memos/screenshots/screenshot-2.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Memos/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Memos/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64", + "arm" + ] + }, + { + "name": "MineOS", + "description": "Free and easy to use Minecraft server management tool.", + "url": "", + "longDescription": "MineOS is a server front-end to ease managing Minecraft administrative tasks. This iteration using Node.js aims to enhance previous MineOS scripts (Python-based), by leveraging the event-triggering, asyncronous model of Node.JS and websockets.", + "tags": [ + "Games" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/MineOS/screenshots/screenshot-1.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/MineOS/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/MineOS/docker-compose.yml", + "supported_architectures": [ + "amd64" + ] + }, + { + "name": "Mongo", + "description": "A free and open-source cross-platform document-oriented database program. Classified as a NoSQL database program, MongoDB uses JSON-like documents with schemata.", + "url": "", + "longDescription": "MongoDB is a free and open-source cross-platform document-oriented database program. Classified as a NoSQL database program, MongoDB uses JSON-like documents with schemata. MongoDB is developed by MongoDB Inc., and is published under a combination of the Server Side Public License and the Apache License.", + "tags": [ + "Developer" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Mongo/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Mongo/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "MongoDB4", + "description": "A free and open-source cross-platform document-oriented database program. Classified as a NoSQL database program, MongoDB uses JSON-like documents with schemata.", + "url": "", + "longDescription": "MongoDB is a free and open-source cross-platform document-oriented database program. Classified as a NoSQL database program, MongoDB uses JSON-like documents with schemata. MongoDB is developed by MongoDB Inc., and is published under a combination of the Server Side Public License and the Apache License.", + "tags": [ + "Developer" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/MongoDB4/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/MongoDB4/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Motioneye", + "description": "A web frontend for the motion daemon.", + "url": "", + "longDescription": "motionEye is a web-based frontend for motion. Check out the wiki for more details. Changelog is available on the releases page. https://github.com/motioneye-project/motioneye", + "tags": [ + "Utilities" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Motioneye/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Motioneye/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Motioneye/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Motioneye/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Motioneye/docker-compose.yml", + "supported_architectures": [ + "amd64" + ] + }, + { + "name": "MySpeed", + "description": "Analysis software that shows your internet speed for up to 30 days.", + "url": "", + "longDescription": "MySpeed is a speed test analysis software that stores the speed of your internet for up to 30 days. This can also be useful if you want to know when your network might have drops or if you want to check if your internet matches the booked values from your contract.", + "tags": [ + "Utilities" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/MySpeed/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/MySpeed/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/MySpeed/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/MySpeed/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/MySpeed/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64", + "arm" + ] + }, + { + "name": "Mylar3", + "description": "Automatic comic book (cbr/cbz) downloader", + "url": "", + "longDescription": "Mylar is an automated Comic Book (cbr/cbz) downloader program for use with NZB and torrents. Mylar allows you to create a watchlist of series that it monitors for various things (new issues, updated information, etc). It will grab, sort, and rename downloaded issues. It will also allow you to monitor weekly pull-lists for items belonging to said watchlisted series to download, as well as being able to monitor and maintain story-arcs.", + "tags": [ + "Downloader" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Mylar3/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Mylar3/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Mylar3/screenshots/screenshot-3.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Mylar3/screenshots/screenshot-4.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Mylar3/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Mylar3/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "N8n", + "description": "Workflow automation tool", + "url": "", + "longDescription": "Free and source-available fair-code licensed workflow automation tool. Easily automate tasks across different services.", + "tags": [ + "Utilities" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/N8n/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/N8n/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/N8n/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/N8n/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/N8n/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64", + "arm" + ] + }, + { + "name": "Navidrome", + "description": "Music Collection and Streaming Server", + "url": "", + "longDescription": "Navidrome is an open source web-based music collection server and streamer. It gives you freedom to listen to your music collection from any browser or mobile device. It's like your personal Spotify!", + "tags": [ + "Media" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Navidrome/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Navidrome/screenshots/screenshot-2.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Navidrome/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Navidrome/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64", + "arm" + ] + }, + { + "name": "Netdata", + "description": "Real-time Performance Monitoring", + "url": "", + "longDescription": "Netdata is a real-time performance and health monitoring solution that helps you visualize and understand the behavior of your systems.", + "tags": [ + "Utilities" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Netdata/screenshots/screenshot-1.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Netdata/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Netdata/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Netdata/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Netdata/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64", + "arm" + ] + }, + { + "name": "Nextcloud", + "description": "The productivity platform that keeps you in control", + "url": "", + "longDescription": "Nextcloud puts your data at your fingertips, under your control. Store your documents, calendar, contacts and photos on a server at home, at one of our providers or in a data center you trust.", + "tags": [ + "Cloud" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Nextcloud/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Nextcloud/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Nextcloud/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Nextcloud/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Nextcloud/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm", + "arm64", + "386", + "mips64le", + "ppc64le", + "s390x" + ] + }, + { + "name": "NginxProxyManager", + "description": "Managing Nginx proxy hosts with a simple, powerful interface.", + "url": "", + "longDescription": "Nginx Proxy Manager is a simple, powerful tool to help you host multiple websites on a single server.", + "tags": [ + "Network" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/NginxProxyManager/screenshots/screenshot-1.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/NginxProxyManager/screenshots/screenshot-2.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/NginxProxyManager/screenshots/screenshot-3.jpg" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/NginxProxyManager/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/NginxProxyManager/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64", + "arm" + ] + }, + { + "name": "Node-RED", + "description": "Low-code programming for event-driven applications", + "url": "", + "longDescription": "Node-RED is a programming tool for wiring together hardware devices, APIs and online services in new and interesting ways. It provides a browser-based editor that makes it easy to wire together flows using the wide range of nodes in the palette that can be deployed to its runtime in a single-click.", + "tags": [ + "Developer" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Node-RED/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Node-RED/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Node-RED/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Node-RED/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Node-RED/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64", + "s390x", + "arm" + ] + }, + { + "name": "Nzbget", + "description": "Efficient Usenet downloader", + "url": "", + "longDescription": "NZBGet can run on almost any device - classic PC, NAS, media player, SAT-receiver, WLAN-router, etc. The download area provides precompiled binaries for Windows, macOS, Linux (compatible with many CPUs and platform variants), FreeBSD and Android. For other platforms the program can be compiled from sources.", + "tags": [ + "Downloader" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Nzbget/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Nzbget/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Nzbget/screenshots/screenshot-3.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Nzbget/screenshots/screenshot-4.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Nzbget/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Nzbget/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm", + "arm64" + ] + }, + { + "name": "Ombi", + "description": "Friendly media request tool, automatically syncs with your media servers!", + "url": "", + "longDescription": "Ombi is a self-hosted web application that automatically gives your shared Plex or Emby users the ability to request content by themselves! Ombi can be linked to multiple TV Show and Movie DVR tools to create a seamless end-to-end experience for your users.", + "tags": [ + "Media" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Ombi/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Ombi/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Ombi/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Ombi/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Ombi/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "OpenHAB", + "description": "Empowering the smart home", + "url": "", + "longDescription": "The open Home Automation Bus (openHAB, pronounced ˈəʊpənˈhæb) is an open source, technology agnostic home automation platform which runs as the center of your smart home! Its ability to integrate a multitude of other devices and systems. openHAB includes other home automation systems, (smart) devices and other technologies into a single solution. To provide a uniform user interface and a common approach to automation rules across the entire system, regardless of the number of manufacturers and sub-systems involved. Giving you the most flexible tool available to make almost any home automation wish come true; if you can think it, odds are that you can implement it with openHAB.", + "tags": [ + "Home Automation" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/OpenHAB/screenshots/screenshot-1.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/OpenHAB/screenshots/screenshot-2.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/OpenHAB/screenshots/screenshot-3.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/OpenHAB/screenshots/screenshot-4.jpg" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/OpenHAB/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/OpenHAB/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64", + "arm" + ] + }, + { + "name": "OpenSpeedTest", + "description": "HTML5 Network Speed Test Server.", + "url": "", + "longDescription": "An application for launching HTML5 Network Speed Test Server. You can test download & upload speed from any device within your network with a web browser that is IE10 or new.", + "tags": [ + "Utilities" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/OpenSpeedTest/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/OpenSpeedTest/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/OpenSpeedTest/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/OpenSpeedTest/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/OpenSpeedTest/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64", + "ppc64le", + "s390x", + "386", + "arm" + ] + }, + { + "name": "Overseerr", + "description": "Overseerr is a request management and media discovery tool built to work with your existing Plex ecosystem.", + "url": "", + "longDescription": "Overseerr is a free and open source software application for managing requests for your media library. It integrates with your existing services, such as Sonarr, Radarr, and Plex!", + "tags": [ + "Media" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Overseerr/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Overseerr/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Overseerr/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Overseerr/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Overseerr/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Petio", + "description": "A third party companion app available to Plex server owners to allow their users to request, review and discover content.", + "url": "", + "longDescription": "Petio is a third party companion app available to Plex server owners to allow their users to request, review and discover content. The app is built to appear instantly familiar and intuitive to even the most tech-agnostic users. Petio will help you manage requests from your users, connect to other third party apps such as Sonarr and Radarr, notify users when content is available and track request progress. Petio also allows users to discover media both on and off your server, quickly and easily find related content and review to leave their opinion for other users.\n\nPetio is an ongoing, forever free, always evolving project currently in alpha prototype stage and now available!\n", + "tags": [ + "Media" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Petio/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Petio/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Petio/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Petio/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Petio/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm", + "arm64" + ] + }, + { + "name": "PhotoPrism", + "description": "Browsing, organizing & sharing your photo collection", + "url": "", + "longDescription": "PhotoPrism® is an AI-powered app for browsing, organizing & sharing your photo collection. It makes use of the latest technologies to tag and find pictures automatically without getting in your way. You can run it at home, on a private server, or in the cloud.", + "tags": [ + "Gallery" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/PhotoPrism/screenshots/screenshot-1.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/PhotoPrism/screenshots/screenshot-2.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/PhotoPrism/screenshots/screenshot-3.jpg" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/PhotoPrism/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/PhotoPrism/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Pihole", + "description": "Network-wide Ad Blocking", + "url": "", + "longDescription": "Open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server.", + "tags": [ + "Network" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Pihole/screenshots/screenshot-1.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Pihole/screenshots/screenshot-2.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Pihole/screenshots/screenshot-3.jpg" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Pihole/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Pihole/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64", + "386", + "arm" + ] + }, + { + "name": "Plex", + "description": "The home for all your entertainment.", + "url": "", + "longDescription": "Plex organizes video, music and photos from personal media libraries and streams them to smart TVs, streaming boxes and mobile devices. This container is packaged as a standalone Plex Media Server. has always been a top priority. Straightforward design and bulk actions mean getting things done faster.", + "tags": [ + "Media" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Plex/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Plex/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Plex/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Plex/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Plex/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Portainer", + "description": "Lightweight Docker management UI", + "url": "", + "longDescription": "Portainer is a lightweight management UI which allows you to easily manage your Docker environments. It is designed to be easy to use and offers full control over your Docker hosts and containers.", + "tags": [ + "Utilities" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Portainer/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Portainer/screenshots/screenshot-2.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Portainer/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Portainer/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm", + "arm64" + ] + }, + { + "name": "PostgreSQL", + "description": "PostgreSQL is an advanced, enterprise-class, and open-source relational database system. PostgreSQL supports both SQL (relational) and JSON (non-relational) querying.", + "url": "", + "longDescription": "PostgreSQL is a powerful, open source object-relational database system with over 35 years of active development that has earned it a strong reputation for reliability, feature robustness, and performance.\n\nPostgreSQL is a highly stable database backed by more than 20 years of development by the open-source community.\n\nPostgreSQL is used as a primary database for many web applications as well as mobile and analytics applications.\n", + "tags": [ + "Developer" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/PostgreSQL/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/PostgreSQL/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm", + "arm64" + ] + }, + { + "name": "Prowlarr", + "description": "Integration of various PVR applications", + "url": "", + "longDescription": "Prowlarr is an indexer manager/proxy built on the popular *arr .net/reactjs base stack to integrate with your various PVR apps. Prowlarr supports management of both Torrent Trackers and Usenet Indexers. It integrates seamlessly with Lidarr, Mylar3, Radarr, Readarr, and Sonarr offering complete management of your indexers with no per app Indexer setup required (we do it all).", + "tags": [ + "Downloader" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Prowlarr/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Prowlarr/screenshots/screenshot-2.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Prowlarr/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Prowlarr/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "PyLoad", + "description": "Free Downloader Manager.", + "url": "", + "longDescription": "pyLoad is a Free and Open Source download manager written in Python and designed to be extremely lightweight, easily extensible and fully manageable via web.", + "tags": [ + "Downloader" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/PyLoad/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/PyLoad/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/PyLoad/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/PyLoad/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/PyLoad/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Radarr", + "description": "The movie collection manager for Usenet and BitTorrent users", + "url": "", + "longDescription": "Radarr is a movie collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new movies and will interface with clients and indexers to grab, sort, and rename them. It can also be configured to automatically upgrade the quality of existing files in the library when a better quality format becomes available. Note that only one type of a given movie is supported. If you want both an 4k version and 1080p version of a given movie you will need multiple instances.", + "tags": [ + "Media" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Radarr/screenshots/screenshot-1.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Radarr/screenshots/screenshot-2.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Radarr/screenshots/screenshot-3.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Radarr/screenshots/screenshot-4.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Radarr/screenshots/screenshot-5.jpg" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Radarr/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Radarr/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Readarr", + "description": "Ebook and audiobook collection manager for Usenet and BitTorrent users.", + "url": "", + "longDescription": "Readarr is a ebook collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new books from your favorite authors and will interface with clients and indexers to grab, sort, and rename them.", + "tags": [ + "Media" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Readarr/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Readarr/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Readarr/screenshots/screenshot-3.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Readarr/screenshots/screenshot-4.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Readarr/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Readarr/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Resilio-sync", + "description": "Unleash the power of seamless file synchronization.", + "url": "", + "longDescription": "resilio-sync is a Docker-based application that enables fast and secure file synchronization and sharing.", + "tags": [ + "File Sync" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Resilio-sync/screenshots/screenshot-1.jpg" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Resilio-sync/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Resilio-sync/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Sabnzbd", + "description": "Free and easy binary newsreader", + "url": "", + "longDescription": "SABnzbd is an Open Source Binary Newsreader written in Python. It's totally free, easy to use, and works practically everywhere. SABnzbd makes Usenet as simple and streamlined as possible by automating everything we can. All you have to do is add an .nzb. SABnzbd takes over from there, where it will be automatically downloaded, verified, repaired, extracted and filed away with zero human interaction. SABnzbd offers an easy setup wizard and has self-analysis tools to verify your setup.", + "tags": [ + "Media" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Sabnzbd/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Sabnzbd/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Sabnzbd/screenshots/screenshot-3.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Sabnzbd/screenshots/screenshot-4.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Sabnzbd/screenshots/screenshot-5.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Sabnzbd/screenshots/screenshot-6.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Sabnzbd/screenshots/screenshot-7.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Sabnzbd/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Sabnzbd/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Sickchill", + "description": "Automatic video library manager for TV Shows", + "url": "", + "longDescription": "SickChill is an automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic: automatic torrent/nzb searching, downloading, and processing at the qualities you want.\n", + "tags": [ + "Media" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Sickchill/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Sickchill/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Sickchill/screenshots/screenshot-3.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Sickchill/screenshots/screenshot-4.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Sickchill/screenshots/screenshot-5.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Sickchill/screenshots/screenshot-6.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Sickchill/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Sickchill/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Siyuan-Note", + "description": "Personal knowledge management system", + "url": "", + "longDescription": "SiYuan is a privacy-first personal knowledge management system, support fine-grained block-level reference and Markdown WYSIWYG.", + "tags": [ + "Notes" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Siyuan-Note/screenshots/screenshot-1.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Siyuan-Note/screenshots/screenshot-2.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Siyuan-Note/screenshots/screenshot-3.jpg" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Siyuan-Note/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Siyuan-Note/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64", + "arm" + ] + }, + { + "name": "Smokeping", + "description": "Free open source network performance monitoring tool", + "url": "", + "longDescription": "keeps track of your network latency.", + "tags": [ + "Network" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Smokeping/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Smokeping/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Smokeping/screenshots/screenshot-3.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Smokeping/screenshots/screenshot-4.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Smokeping/screenshots/screenshot-5.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Smokeping/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Smokeping/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Snapdrop", + "description": "Cross-platform file sharing made easy.", + "url": "", + "longDescription": "Snapdrop is a Progressive Web App (PWA) that allows you to transfer files between devices in the same network without having to install anything.", + "tags": [ + "Utilities" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Snapdrop/screenshots/screenshot-1.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Snapdrop/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Snapdrop/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Sonarr", + "description": "The PVR for Usenet and BitTorrent users", + "url": "", + "longDescription": "Sonarr is a PVR for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.", + "tags": [ + "Media" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Sonarr/screenshots/screenshot-1.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Sonarr/screenshots/screenshot-2.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Sonarr/screenshots/screenshot-3.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Sonarr/screenshots/screenshot-4.jpg" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Sonarr/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Sonarr/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "StableDiffusionWebUI", + "description": "An AI model used to generate images conditioned on text descriptions.", + "url": "", + "longDescription": "Stable Diffusion is a deep learning, text-to-image model released in 2022 based on diffusion techniques. It is primarily used to generate detailed images conditioned on text descriptions, though it can also be applied to other tasks such as inpainting, outpainting, and generating image-to-image translations guided by a text prompt.", + "tags": [ + "Developer" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/StableDiffusionWebUI/screenshots/screenshot-1.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/StableDiffusionWebUI/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/StableDiffusionWebUI/screenshots/screenshot-3.webp" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/StableDiffusionWebUI/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/StableDiffusionWebUI/docker-compose.yml", + "supported_architectures": [ + "amd64" + ] + }, + { + "name": "Stremio", + "description": "Stremio is a modern media center that gives you the freedom to watch everything you want.", + "url": "", + "longDescription": "Stremio offers a secure, modern and seamless entertainment experience. With its easy-to-use interface and diverse content library, including 4K HDR support, users can enjoy their favorite movies and TV shows across all their devices. And with its commitment to security, Stremio is the ultimate choice for a worry-free, high-quality streaming experience.", + "tags": [ + "Media" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Stremio/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Stremio/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Stremio/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Stremio/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Stremio/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Syncthing", + "description": "Free, secure, and distributed file synchronisation tool.", + "url": "", + "longDescription": "Syncthing is a continuous file synchronization program. It synchronizes files between two or more computers in real time, safely protected from prying eyes. Your data is your data alone and you deserve to choose where it is stored, whether it is shared with some third party, and how it's transmitted over the internet.", + "tags": [ + "Backup" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Syncthing/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Syncthing/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Tautulli", + "description": "Monitor your Plex Media Server and much more.", + "url": "", + "longDescription": "Tautulli is a 3rd party application that you can run alongside your Plex Media Server to monitor activity and track various statistics.", + "tags": [ + "Media" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Tautulli/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Tautulli/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Tautulli/screenshots/screenshot-3.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Tautulli/screenshots/screenshot-4.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Tautulli/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Tautulli/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Threadfin", + "description": "M3U proxy server", + "url": "", + "longDescription": "Threadfin is a M3U proxy server for Plex, Emby, Jellyfin and any client and provider which supports the .TS and .M3U8 (HLS) streaming formats.", + "tags": [ + "Utilities" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Threadfin/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Threadfin/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64", + "arm" + ] + }, + { + "name": "Transmission", + "description": "Transmission is a cross-platform BitTorrent client", + "url": "", + "longDescription": "Transmission is an open source, volunteer-based project. Unlike some BitTorrent clients, Transmission doesn''t play games with its users to make money: Transmission doesn''t bundle toolbars, pop-up ads, flash ads, twitter tools, or anything else. It doesn''t hold some features back for a payware version. Its source code is available for anyone to review. We don''t track our users, and our website and forums have no third-party ads or analytics.\n", + "tags": [ + "Downloader" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Transmission/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Transmission/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Transmission/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Transmission/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Transmission/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Twingate", + "description": "Twingate Connector for CasaOS", + "url": "", + "longDescription": "It's a connector for Twingate\".", + "tags": [ + "Network" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Twingate/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Twingate/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64", + "arm" + ] + }, + { + "name": "Unifi-Network-Application", + "description": "The Unifi network application software is a powerful, enterprise wireless software engine ideal for high-density client deployments requiring low latency and high uptime performance.", + "url": "", + "longDescription": "Only mandatory ports are enabled by default, to extend functionality consider exposing 1900:1900/udp, 8843:8843, 8880:8880, 6789:6789, 5514:5514/udp.\nOther ports specifications [here](https://docs.linuxserver.io/images/docker-unifi-network-application/#ports-p).\n\nBecause the network application runs inside Docker by default it uses an IP address not accessible by other devices.\nSo, for it to adopt other devices, it is required to use port `8080` and change the inform IP address. To do so, go in settings and search for the `Inform Host` option, there select override and set the address to that of the host.\nOften, it is also needed to ssh into the devices you want to adopt and manually set the inform IP address, the command needed for doing so is `set-inform http://HOST-ADDRESS:8080/inform`.\n\nFor more [information](https://docs.linuxserver.io/images/docker-unifi-network-application/)\n", + "tags": [ + "Network" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Unifi-Network-Application/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Unifi-Network-Application/screenshots/screenshot-2.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Unifi-Network-Application/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Unifi-Network-Application/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Unifi-controller", + "description": "The Unifi-controller software is a powerful, enterprise wireless software engine ideal for high-density client deployments requiring low latency and high uptime performance.", + "url": "", + "longDescription": "For Unifi to adopt other devices, e.g. an Access Point, it is required to change the inform IP address. Because Unifi runs inside Docker by default it uses an IP address not accessible by other devices. To change this go to Settings > System Settings > Controller Configuration and set the Controller Hostname/IP to a hostname or IP address accessible by your devices. Additionally the checkbox \"Override inform host with controller hostname/IP\" has to be checked, so that devices can connect to the controller during adoption (devices use the inform-endpoint during adoption).", + "tags": [ + "Network" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Unifi-controller/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Unifi-controller/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Unifi-controller/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Unifi-controller/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Unifi-controller/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "UptimeKuma", + "description": "A fancy monitoring tool", + "url": "", + "longDescription": "It is a self-hosted monitoring tool like \"Uptime Robot\".", + "tags": [ + "Network" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/UptimeKuma/screenshots/screenshot-1.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/UptimeKuma/screenshots/screenshot-2.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/UptimeKuma/screenshots/screenshot-3.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/UptimeKuma/screenshots/screenshot-4.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/UptimeKuma/screenshots/screenshot-5.jpg" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/UptimeKuma/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/UptimeKuma/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64", + "arm" + ] + }, + { + "name": "Vaultwarden", + "description": "A self-hosted Bitwarden server", + "url": "", + "longDescription": "Alternative implementation of the Bitwarden server API written in Rust and compatible with upstream Bitwarden clients*, perfect for self-hosted deployment where running the official resource-heavy service might not be ideal.", + "tags": [ + "Utilities" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/Vaultwarden/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Vaultwarden/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/Vaultwarden/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/Vaultwarden/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/Vaultwarden/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm", + "arm64" + ] + }, + { + "name": "VoceChat", + "description": "Have a Private Social Space Hosted on Your Site", + "url": "", + "longDescription": "As a top alternative to centralized chat services, Voce chat is a superlight Rust powered open-core chat app that prioritizes private hosting.", + "tags": [ + "Chat" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/VoceChat/screenshots/screenshot-1.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/VoceChat/screenshots/screenshot-2.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/VoceChat/screenshots/screenshot-3.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/VoceChat/screenshots/screenshot-4.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/VoceChat/screenshots/screenshot-5.jpg" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/VoceChat/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/VoceChat/docker-compose.yml", + "supported_architectures": [ + "amd64" + ] + }, + { + "name": "WireGuardEasy", + "description": "WEB UI to manage WireGuard VPN.", + "url": "", + "longDescription": "You have found the easiest way to install & manage WireGuard on any Linux host!", + "tags": [ + "Network" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/WireGuardEasy/screenshots/screenshot-1.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/WireGuardEasy/screenshots/screenshot-2.png", + "https://azukaar.github.io/cosmos-casaos-store/servapps/WireGuardEasy/screenshots/screenshot-3.png" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/WireGuardEasy/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/WireGuardEasy/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm", + "arm64" + ] + }, + { + "name": "qBittorrent", + "description": "Free BitTorrent downloader", + "url": "", + "longDescription": "The qBittorrent project aims to provide an open-source software alternative to µTorrent.", + "tags": [ + "Downloader" + ], + "repository": "https://github.com/IceWhaleTech/CasaOS-AppStore", + "image": "", + "screenshots": [ + "https://azukaar.github.io/cosmos-casaos-store/servapps/qBittorrent/screenshots/screenshot-1.jpg", + "https://azukaar.github.io/cosmos-casaos-store/servapps/qBittorrent/screenshots/screenshot-2.jpg" + ], + "icon": "https://azukaar.github.io/cosmos-casaos-store/servapps/qBittorrent/icon.png", + "compose": "https://azukaar.github.io/cosmos-casaos-store/servapps/qBittorrent/docker-compose.yml", + "supported_architectures": [ + "amd64", + "arm64" + ] + } + ], + "TinyActive": [ + { + "name": "2FAuth", + "description": "2FAuth is a web based self-hosted alternative to One Time Passcode (OTP) generators like Google Authenticator, designed for both mobile and desktop.", + "url": "", + "longDescription": "
2FAuth's purpose is to simplify how you use and manage your 2FA with a clean and suitable interface, no matter what device you use. In front of your computer without your smartphone and dealing with a code request? No problemo, just open your 2FAuth instance in a browser tab and voilà.
", + "tags": [ + "2FAuth", + "2fa", + "Auth", + "self-hosted", + "totp", + "otp" + ], + "repository": "https://github.com/Bubka/2FAuth", + "image": "https://hub.docker.com/r/2fauth/2fauth/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/2fauth/screenshots/2FA-header-visual-1024x486.webp", + "https://cosmos.manhtuong.net/servapps/2fauth/screenshots/Two-Factor-Authentication-2FA-768x513.jpg" + ], + "icon": "https://cosmos.manhtuong.net/servapps/2fauth/logo/ezgif-2-01616207b8.png", + "compose": "https://cosmos.manhtuong.net/servapps/2fauth/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "ActiveWorkflow", + "description": "ActiveWorkflow is not a no-code platform, but it does offer a fully featured UI so that both software engineers and other stakeholders can manage and monitor workflows.", + "url": "", + "longDescription": "ActiveWorkflow works alongside your existing technology stack to give you an easy and structured way to: Group business logic for periodic execution, Poll resources, Orchestrate event-driven functionality. You can do all of the above by creating, scheduling, and monitoring workflows of agents, which are self-contained services (or microservices) written in any programming language you choose. ActiveWorkflow gives you a simple way to connect agents to form workflows, extensive logging, state management so that you don't have to worry about a database, and a foundation for scalability and reliability.
", + "tags": [ + "ActiveWorkflow", + "workflows", + "workflow", + "platform", + "software", + "engineers" + ], + "repository": "https://github.com/automaticmode/active_workflow/", + "image": "https://hub.docker.com/r/automaticmode/active_workflow/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/ActiveWorkflow/screenshots/1.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/ActiveWorkflow/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/ActiveWorkflow/cosmos-compose.json", + "supported_architectures": [ + "amd64" + ] + }, + { + "name": "Activepieces", + "description": "Activepieces is a cloud-based platform that aims to make workflow automation accessible for everyone, even those without coding skills.", + "url": "", + "longDescription": "Activepieces is a relatively new no-code workflow automation tool that allows users to set up workflows to streamline repetitive tasks. This Activepieces review will provide an in-depth look at the platform's features, use cases, pricing, support, and more to help you determine if it's the right automation solution for your needs.
", + "tags": [ + "Activepieces", + "trello", + "workflow", + "automation", + "streamline", + "tasks" + ], + "repository": "https://github.com/activepieces/activepieces/", + "image": "https://hub.docker.com/r/activepieces/activepieces/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Activepieces/screenshots/visual-builder.gif" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Activepieces/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Activepieces/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Acunetix", + "description": "Acunetix is an end-to-end web security scanner that offers a 360 view of an organization's security.", + "url": "", + "longDescription": "Quickly find and fix the vulnerabilities that put your web applications at risk of attack. Enjoy more peace of mind without investing more of your limited time.
Username: admin@acu.com
Password: Passw0rd!
Ansible Semaphore is a modern UI for Ansible. It lets you easily run Ansible playbooks, get notifications about fails, control access to deployment system. If your project has grown and deploying from the terminal is no longer for you then Ansible Semaphore is what you need.
", + "tags": [ + "system", + "devops", + "secured", + "security", + "Ansible", + "Semaphore", + "Ansible Semaphore" + ], + "repository": "https://github.com/ansible-semaphore/semaphore", + "image": "https://hub.docker.com/r/semaphoreui/semaphore", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Ansible-semaphore/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Ansible-semaphore/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Ansible-semaphore/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Ansible-semaphore/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Answer", + "description": "Apache Answer A Q&A platform software for teams at any scales. Whether it’s a community forum, help center, or knowledge management platform, you can always count on Answer.", + "url": "", + "longDescription": "Apache Answer A Q&A platform software for teams at any scales. Whether it’s a community forum, help center, or knowledge management platform, you can always count on Answer.
", + "tags": [ + "Answer", + "Apache", + "Q&A", + "open-source", + "knowledge", + "linux" + ], + "repository": "https://github.com/apache/incubator-answer/", + "image": "https://hub.docker.com/r/apache/answer/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Answer-apache/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Answer-apache/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Answer-apache/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Answer-apache/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Appsmith", + "description": "Thousands of engineers are using Appsmith to build custom software on top of their data. Technical users can quickly build, deploy, and share applications with end-users to run critical business operations.", + "url": "", + "longDescription": "Organizations build internal applications such as dashboards, database GUIs, admin panels, approval apps, customer support dashboards, and more to help their teams perform day-to-day operations. Appsmith is an open-source tool that enables the rapid development of these internal apps.
", + "tags": [ + "Appsmith", + "database", + "admin", + "approval", + "development", + "software" + ], + "repository": "https://github.com/appsmithorg/appsmith/", + "image": "https://hub.docker.com/r/appsmith/appsmith-ee/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Appsmith/screenshots/Appsmith-2-uWRv.jpg", + "https://cosmos.manhtuong.net/servapps/Appsmith/screenshots/appsmith-fig9-100934289-large.webp" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Appsmith/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Appsmith/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "ArangoDB", + "description": "ArangoDB is a scalable graph database system to drive value from connected data, faster. Native graphs, an integrated search engine, and JSON support, via a single query language. ArangoDB runs on-prem, in the cloud anywhere.", + "url": "", + "longDescription": "ArangoDB is a scalable graph database system to drive value from connected data, faster. Native graphs, an integrated search engine, and JSON support, via a single query language. ArangoDB runs on-prem, in the cloud anywhere.
", + "tags": [ + "ArangoDB", + "db", + "scalable", + "database", + "Native", + "integrated", + "JSON" + ], + "repository": "https://github.com/arangodb/arangodb/", + "image": "https://hub.docker.com/_/arangodb/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/ArangoDB/screenshots/arango-keylines-integration-800px.webp", + "https://cosmos.manhtuong.net/servapps/ArangoDB/screenshots/financial-fraud-detection-arangodb-intro.jpg" + ], + "icon": "https://cosmos.manhtuong.net/servapps/ArangoDB/logo/arangodb_cloud-database-management-systems_1651266319025.png", + "compose": "https://cosmos.manhtuong.net/servapps/ArangoDB/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "ArchiveBox", + "description": "ArchiveBox is a powerful, self-hosted internet archiving solution to collect, save, and view websites offline.", + "url": "", + "longDescription": "ArchiveBox is an open source tool that helps you archive web content on your own (or privately within an organization): save copies of browser bookmarks, preserve evidence for legal cases, backup photos from FB / Insta / Flickr, download your media from YT / Soundcloud / etc., snapshot research papers & academic citations, and more.
", + "tags": [ + "ArchiveBox", + "Archive", + "save", + "website", + "self-hosted", + "linux" + ], + "repository": "https://github.com/ArchiveBox/ArchiveBox/", + "image": "https://hub.docker.com/r/archivebox/archivebox/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/ArchiveBox/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/ArchiveBox/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/ArchiveBox/logo/archive_box_icon_149534.png", + "compose": "https://cosmos.manhtuong.net/servapps/ArchiveBox/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Bin-pastebin", + "description": "A minimal pastebin which also accepts binary files like Images, PDFs and ships multiple clients.", + "url": "", + "longDescription": "A minimal pastebin which also accepts binary files like Images, PDFs and ships multiple clients. It does not require you to host a SQL server and everything is self-contained in a statically linked binary (the docker image runs on scratch !), which makes it extremely easy to deploy.
", + "tags": [ + "pastebin", + "note", + "code", + "share", + "self-hosted", + "linux", + "file-upload", + "file" + ], + "repository": "https://github.com/Leak-VN/bin/", + "image": "https://hub.docker.com/r/vouu/bin-pastebin", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Bin-pastebin/screenshots/image_clipboard.gif" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Bin-pastebin/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Bin-pastebin/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Browserless", + "description": "The docker image that powers the core of browserless is available for free for open-source projects. Using it is about as simple as using the browserless service itself with the only difference being that you'll have to launch and manage the infrastructure.", + "url": "", + "longDescription": "browserless is a web-based service that allows for remote clients to connect and execute headless work; all inside of docker. It supports new libraries like Puppeteer and Playwright, aiming to replace antiquated or in-house systems. We also bundle numerous handy REST-based APIs for doing more common actions like data collection, PDF generation and more.
", + "tags": [ + "browserless", + "browser", + "open-source", + "self-hosted", + "linux", + "chrome" + ], + "repository": "https://github.com/browserless/browserless/", + "image": "https://github.com/browserless/browserless/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Browserless/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Browserless/screenshots/2.png", + "https://cosmos.manhtuong.net/servapps/Browserless/screenshots/scaling-puppeteer-and-chrome-with-browserless.webp" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Browserless/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Browserless/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "CTFd", + "description": "CTFd is a Capture The Flag framework focusing on ease of use and customizability. It comes with everything you need to run a CTF and it's easy to customize with plugins and themes.", + "url": "", + "longDescription": "CTFd has features designed to support organizers. Constant development efforts, open source contributors, combined with plugins and themes give it the most flexibility of any CTF framework..
", + "tags": [ + "CTFd", + "Capture The Flag", + "server", + "open-source", + "self-hosted", + "linux" + ], + "repository": "https://github.com/CTFd/CTFd/", + "image": "https://hub.docker.com/r/ctfd/ctfd/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/CTFD/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/CTFD/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/CTFD/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/CTFD/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Changedetection", + "description": "Changedetection.io is a fully opensource project, we rely on and financially support the libraries that we build on. Our vision is to be the most dynamic and feature-filled website change detection, notification and restock alert system, this can only be done with the help of the opensource community.", + "url": "", + "longDescription": "Changedetection.io is a fully opensource project, we rely on and financially support the libraries that we build on. Our vision is to be the most dynamic and feature-filled website change detection, notification and restock alert system, this can only be done with the help of the opensource community.
", + "tags": [ + "Appsmith", + "database", + "admin", + "approval", + "development", + "software" + ], + "repository": "https://github.com/dgtlmoon/changedetection.io", + "image": "https://ghcr.io/dgtlmoon/changedetection.io", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Changedetection/screenshots/screenshot-diff.png", + "https://cosmos.manhtuong.net/servapps/Changedetection/screenshots/screenshot.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Changedetection/logo/channels4_profile.jpg", + "compose": "https://cosmos.manhtuong.net/servapps/Changedetection/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Chatwoot", + "description": "Chatwoot gives you all the tools to manage conversations, build relationships and delight your customers from one place.", + "url": "", + "longDescription": "Chatwoot is an open-source, self-hosted customer engagement suite. Chatwoot lets you view and manage your customer data, communicate with them irrespective of which medium they use, and re-engage them based on their profile.
", + "tags": [ + "Chatwoot", + "Chat", + "open-source", + "self-hosted", + "linux" + ], + "repository": "https://github.com/chatwoot/chatwoot/", + "image": "https://github.com/chatwoot/chatwoot/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Chatwoot/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Chatwoot/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Chatwoot/logo/1233.webp", + "compose": "https://cosmos.manhtuong.net/servapps/Chatwoot/cosmos-compose.json", + "supported_architectures": [ + "amd64" + ] + }, + { + "name": "Chromium", + "description": "Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web.", + "url": "", + "longDescription": "Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web. This site contains design documents, architecture overviews, testing information, and more to help you learn to build and work with the Chromium source code.
", + "tags": [ + "Chromium", + "Chrome", + "browser", + "open-source", + "self-hosted", + "linux" + ], + "repository": "https://github.com/linuxserver/docker-chromium/", + "image": "https://hub.docker.com/r/linuxserver/chromium/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Chromium/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Chromium/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Chromium/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Chromium/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "CloudBeaver", + "description": "CloudBeaver is a web server which provides rich web interface. Server itself is a Java application, web part is written on TypeScript and React.", + "url": "", + "longDescription": "CloudBeaver is a web server which provides rich web interface. Server itself is a Java application, web part is written on TypeScript and React.
", + "tags": [ + "Chromium", + "Chrome", + "browser", + "open-source", + "self-hosted", + "linux" + ], + "repository": "https://github.com/dbeaver/cloudbeaver/", + "image": "https://hub.docker.com/r/dbeaver/cloudbeaver/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Cloudbeaver/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Cloudbeaver/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Cloudbeaver/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Cloudbeaver/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "CockroachDB", + "description": "CockroachDB is a cloud-native distributed SQL database designed to build, scale, and manage modern, data-intensive applications.", + "url": "", + "longDescription": "CockroachDB is a distributed SQL database built on a transactional and strongly-consistent key-value store. It scales horizontally; survives disk, machine, rack, and even datacenter failures with minimal latency disruption and no manual intervention; supports strongly-consistent ACID transactions; and provides a familiar SQL API for structuring, manipulating, and querying data.
", + "tags": [ + "CockroachDB", + "db", + "SQL", + "database", + "transactional", + "key-value" + ], + "repository": "https://github.com/cockroachdb/cockroach/", + "image": "https://hub.docker.com/r/cockroachdb/cockroach/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/CockroachDB/screenshots/Local-PV-Distributed-device-cockroachdb-0b50e6c0803314bc7b57f201cdc13781.svg", + "https://cosmos.manhtuong.net/servapps/CockroachDB/screenshots/maxresdefault.jpg" + ], + "icon": "https://cosmos.manhtuong.net/servapps/CockroachDB/logo/cockroachdb-logo-png-transparent.png", + "compose": "https://cosmos.manhtuong.net/servapps/CockroachDB/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Coder", + "description": "Coder shifts software development from local machines to the cloud. Onboard new developers in minutes, build code on powerful servers—all while keeping source code and data secure behind your firewall.", + "url": "", + "longDescription": "Coder shifts software development from local machines to the cloud. Onboard new developers in minutes, build code on powerful servers—all while keeping source code and data secure behind your firewall.
", + "tags": [ + "Coder", + "development", + "powerful", + "code", + "secure", + "linux" + ], + "repository": "https://github.com/coder/coder/", + "image": "https://ghcr.io/coder/coder/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Coder/screenshots/1.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Coder/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Coder/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Confluence", + "description": "Confluence is your remote-friendly team workspace where knowledge and collaboration meet.", + "url": "", + "longDescription": "Confluence is a web-based corporate wiki developed by Australian software company Atlassian. Atlassian wrote Confluence in the Java programming language and first published it in 2004. Confluence Standalone comes with a built-in Tomcat web server and hsql database, and also supports other databases.
", + "tags": [ + "Confluence", + "Software", + "remote", + "self-hosted", + "atlassian", + "workspace", + "collaboration" + ], + "repository": "https://github.com/vncloudsco/confluence/", + "image": "https://hub.docker.com/r/vouu/confluence/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Confluence/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Confluence/screenshots/2.png", + "https://cosmos.manhtuong.net/servapps/Confluence/screenshots/2.webp" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Confluence/logo/Atlassian-Logo-2010s1-500x339.png", + "compose": "https://cosmos.manhtuong.net/servapps/Confluence/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Crawlab", + "description": "Crawlab is a powerful Web Crawler Management Platform (WCMP) that can run web crawlers and spiders developed in various programming languages.", + "url": "", + "longDescription": "Crawlab is a powerful Web Crawler Management Platform (WCMP) that can run web crawlers and spiders developed in various programming languages including Python, Go, Node.js, Java, C# as well as frameworks including Scrapy, Colly, Selenium, Puppeteer. It is used for running, managing and monitoring web crawlers, particularly in production environment where traceability, scalability and stability are the major factors to concern.
", + "tags": [ + "Crawlab", + "url", + "Crawl", + "open-source", + "self-hosted", + "linux" + ], + "repository": "https://github.com/crawlab-team/crawlab/", + "image": "https://hub.docker.com/r/crawlabteam/crawlab/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Crawlab/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Crawlab/screenshots/screenshot-node-list.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Crawlab/logo/cover.jpg", + "compose": "https://cosmos.manhtuong.net/servapps/Crawlab/cosmos-compose.json", + "supported_architectures": [ + "amd64" + ] + }, + { + "name": "DiskStation", + "description": "Synology DiskStation Centralize data storage and backup, streamline file collaboration, optimize video management, and secure network deployment to facilitate data management.", + "url": "", + "longDescription": "Synology DiskStation Manager (DSM) is the intuitive operating system that powers every Synology NAS. Let us organize and protect your data so you can focus on what you do best.
", + "tags": [ + "DiskStation", + "DSM", + "synology", + "self-hosted", + "nas", + "linux" + ], + "repository": "https://github.com/vdsm/virtual-dsm/", + "image": "https://hub.docker.com/r/vdsm/virtual-dsm", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/DiskStation/screenshots/6623_552618_synology_diskstation_ds216_ii.jpg", + "https://cosmos.manhtuong.net/servapps/DiskStation/screenshots/maxresdefault.jpg" + ], + "icon": "https://cosmos.manhtuong.net/servapps/DiskStation/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/DiskStation/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Docat", + "description": "Docat is a document management system that transforms your physical documents into a searchable online archive so you can keep, well, less paper.", + "url": "", + "longDescription": "Docat is a document management system that transforms your physical documents into a searchable online archive so you can keep, well, less paper. < /p>", + "tags": [ + "document", + "management", + "organization", + "archive", + "collection", + "paper" + ], + "repository": "https://github.com/Leak-VN/docat/", + "image": "https://hub.docker.com/r/vouu/docat/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Docat/screenshots/1.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Docat/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Docat/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Doku", + "description": "Doku is a simple, lightweight web-based application that allows you to monitor Docker disk usage in a user-friendly manner. The Doku displays the amount of disk space used by the Docker daemon, splits by images, containers, volumes, and builder cache.", + "url": "", + "longDescription": "
Doku is a simple, lightweight web-based application that allows you to monitor Docker disk usage in a user-friendly manner. The Doku displays the amount of disk space used by the Docker daemon, splits by images, containers, volumes, and builder cache
", + "tags": [ + "devops", + "utility", + "monitoring", + "dashboard", + "disk-space", + "size-calculation", + "disk-usage" + ], + "repository": "https://github.com/amerkurev/doku/", + "image": "https://hub.docker.com/r/amerkurev/doku/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Doku/screenshots/235870076-a344527c-874d-41a4-bda9-749efd4ff917.svg" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Doku/logo/doku7384.jpg", + "compose": "https://cosmos.manhtuong.net/servapps/Doku/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm" + ] + }, + { + "name": "FastAPI", + "description": "FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.8+ based on standard Python type hints.", + "url": "", + "longDescription": "FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.8+ based on standard Python type hints. FastAPI framework, high performance, easy to learn, fast to code, ready for production
", + "tags": [ + "FastAPI", + "api", + "api gateway", + "gateway", + "high-performance", + "building", + "Python", + "framework" + ], + "repository": "https://github.com/Leak-VN/fastapi/", + "image": "https://hub.docker.com/r/vouu/fastapi/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Fastapi/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Fastapi/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Fastapi/logo/fastapi.svg", + "compose": "https://cosmos.manhtuong.net/servapps/Fastapi/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "FileGator", + "description": "FileGator has multi-user support so you can have admins and other users managing the files with different access permissions, roles and home folders.", + "url": "", + "longDescription": "FileGator has multi-user support so you can have admins and other users managing the files with different access permissions, roles and home folders. You can manage files inside your local repository folder (on your server's hard drive) or connect to other storage adapters
", + "tags": [ + "FileGator", + "multi-user", + "files", + "manage files", + "self-hosted", + "linux", + "filemanager" + ], + "repository": "https://github.com/filegator/filegator/", + "image": "https://hub.docker.com/r/filegator/filegator/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/FileGator/screenshots/1.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/FileGator/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/FileGator/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "FileShelter", + "description": "FileShelter is a self-hosted software that allows you to easily share files over the Internet. Just upload one or more files and get an URL back!.", + "url": "", + "longDescription": "FileShelter is a self-hosted software that allows you to easily share files over the Internet. Just upload one or more files and get an URL back!.
", + "tags": [ + "FileShelter", + "File", + "share files", + "Private links", + "self-hosted", + "linux" + ], + "repository": "https://github.com/epoupon/fileshelter/", + "image": "https://hub.docker.com/r/epoupon/fileshelter/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/FileShelter/screenshots/1.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/FileShelter/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/FileShelter/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "FireFox", + "description": "FireFox is an open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web.", + "url": "", + "longDescription": "FireFox is an open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web. This site contains design documents, architecture overviews, testing information, and more to help you learn to build and work with the Chromium source code.
", + "tags": [ + "FireFox", + "FireFox", + "browser", + "open-source", + "self-hosted", + "linux" + ], + "repository": "https://github.com/linuxserver/docker-FireFox/", + "image": "https://hub.docker.com/r/linuxserver/FireFox/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/FireFox/screenshots/1.jpg", + "https://cosmos.manhtuong.net/servapps/FireFox/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/FireFox/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/FireFox/logo/logo.eb1324e44442.svg", + "compose": "https://cosmos.manhtuong.net/servapps/FireFox/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Flipt", + "description": "Flipt can be deployed within your existing infrastructure so that you don't have to worry about your information being sent to a third party or the latency required to communicate across the internet.", + "url": "", + "longDescription": "Flipt enables you to follow DevOps best practices and separate releases from deployments. Built with high-performance engineering organizations in mind
", + "tags": [ + "Acunetix", + "auto", + "browser", + "vul", + "self-hosted", + "linux" + ], + "repository": "https://github.com/flipt-io/flipt/", + "image": "https://docker.flipt.io/flipt/flipt/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Flipt/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Flipt/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Flipt/logo/0_lJTkWI1TOFW-dvkY.png", + "compose": "https://cosmos.manhtuong.net/servapps/Flipt/cosmos-compose.json", + "supported_architectures": [ + "amd64" + ] + }, + { + "name": "Forgejo", + "description": "Forgejo is a self-hosted lightweight software forge. Easy to install and low maintenance, it just does the job.", + "url": "", + "longDescription": "Brought to you by an inclusive community under the umbrella of Codeberg e.V., a democratic non-profit organization, Forgejo can be trusted to be exclusively Free Software. It includes and cooperates with hundreds of projects (Gitea, Git, ...) and is focused on scaling, federation and privacy.
", + "tags": [ + "2FAuth", + "2fa", + "Auth", + "self-hosted", + "totp", + "otp" + ], + "repository": "https://codeberg.org/forgejo/forgejo", + "image": "https://codeberg.org/forgejo/forgejo/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Forgejo/screenshots/2FA-header-visual-1024x486.webp", + "https://cosmos.manhtuong.net/servapps/Forgejo/screenshots/Two-Factor-Authentication-2FA-768x513.jpg", + "https://cosmos.manhtuong.net/servapps/Forgejo/screenshots/image.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Forgejo/logo/73144-c883a242dec5299fbc06bbe3ee71d8c6.png", + "compose": "https://cosmos.manhtuong.net/servapps/Forgejo/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Hasty-Paste", + "description": "It is a place to quickly paste some text and share it. Mostly used for sharing debug logs and such to help developers provide tech support. The project aims to be both fast and minimal.", + "url": "", + "longDescription": "It is a place to quickly paste some text and share it. Mostly used for sharing debug logs and such to help developers provide tech support. The project aims to be both fast and minimal.
", + "tags": [ + "pastebin", + "note", + "code", + "share", + "self-hosted", + "linux", + "file-upload", + "file" + ], + "repository": "https://github.com/enchant97/hasty-paste/", + "image": "http://ghcr.io/enchant97/hasty-paste/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Hasty-Paste/screenshots/1.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Hasty-Paste/logo/icon.svg", + "compose": "https://cosmos.manhtuong.net/servapps/Hasty-Paste/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Hasura", + "description": "Hasura is an open-source product that accelerates API development by 10x by giving you GraphQL or REST APIs with built-in authorization on your data, instantly.", + "url": "", + "longDescription": "The Hasura GraphQL Engine makes your data instantly accessible over a GraphQL API, so you can build and ship modern, performant apps and APIs 10x faster. Hasura connects to your databases, REST and GraphQL endpoints, and third party APIs to provide a unified, connected, real-time, secured GraphQL API for all of your data. < /p>", + "tags": [ + "Hasura", + "management", + "API", + "data", + "development", + "REST APIs", + "GraphQL", + "endpoints" + ], + "repository": "https://github.com/hasura/graphql-engine/", + "image": "https://hub.docker.com/r/hasura/graphql-engine/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Hasura/screenshots/demo.gif" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Hasura/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Hasura/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Hedgedoc", + "description": "HedgeDoc (formerly known as CodiMD) is an open-source, web-based, self-hosted, collaborative markdown editor", + "url": "", + "longDescription": "
HedgeDoc is a real-time, multi-platform collaborative markdown note editor. This means that you can write notes with other people on your desktop, tablet or even on the phone. You can sign-in via multiple auth providers like Facebook, Twitter, GitHub and many more on the homepage.
", + "tags": [ + "real-time", + "self-hosted", + "markdown", + "note" + ], + "repository": "https://github.com/linuxserver/docker-hedgedoc", + "image": "https://hub.docker.com/r/linuxserver/hedgedoc", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Hedgedoc/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Hedgedoc/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Hedgedoc/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Hedgedoc/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Hoppscotch", + "description": "Hoppscotch is a lightweight API development suite. Hoppscotch was built from the ground up with ease of use and accessibility in mind.", + "url": "", + "longDescription": "Hoppscotch is a lightweight API development suite. Hoppscotch was built from the ground up with ease of use and accessibility in mind. Hoppscotch provides all the functionality needed for developers with a minimalist and unobtrusive UI. Hoppscotch community edition is free-to-use and as an added perk completely open source.
", + "tags": [ + "Hoppscotch", + "api", + "manager", + "postman", + "platform", + "developers" + ], + "repository": "https://github.com/hoppscotch/hoppscotch/", + "image": "https://hub.docker.com/r/hoppscotch/hoppscotch/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Hoppscotch/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Hoppscotch/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Hoppscotch/logo/logo.svg", + "compose": "https://cosmos.manhtuong.net/servapps/Hoppscotch/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Invidious", + "description": "Invidious is an open source alternative front-end to YouTube.", + "url": "", + "longDescription": "Invidious is an open source alternative front-end to YouTube.
", + "tags": [ + "Invidious", + "Software", + "alternative", + "self-hosted", + "atlassian", + "youtube", + "front-end" + ], + "repository": "https://github.com/iv-org/invidious/", + "image": "https://quay.io/repository/invidious/invidious/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Invidious/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Invidious/screenshots/2.png", + "https://cosmos.manhtuong.net/servapps/Invidious/screenshots/2.webp" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Invidious/logo/invidious-colored-vector.svg", + "compose": "https://cosmos.manhtuong.net/servapps/Invidious/cosmos-compose.json", + "supported_architectures": [ + "amd64" + ] + }, + { + "name": "Jira", + "description": "Make the impossible, possible in Jira. Plan, track, and release world-class software with the number one project management tool for agile teams.", + "url": "", + "longDescription": "Jira was an open source tool available for anyone to download. Its popularity drove thousands of users to adopt it within organizations across the globe. Unlike IBM Engineering Management Platform, Jira is primarily for use in small teams and individuals, not large projects or enterprises.
", + "tags": [ + "Jira", + "Software", + "Jira Software", + "self-hosted", + "atlassian" + ], + "repository": "https://github.com/vncloudsco/jira-install/", + "image": "https://hub.docker.com/r/vouu/jira/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Jira/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Jira/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Jira/logo/Atlassian-Logo-2010s1-500x339.png", + "compose": "https://cosmos.manhtuong.net/servapps/Jira/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Koel", + "description": "Koel (also stylized as koel, with a lowercase k) is a simple web-based personal audio streaming service.", + "url": "", + "longDescription": "Koel (also stylized as koel, with a lowercase k) is a simple web-based personal audio streaming service written in Vue on the client side and Laravel on the server side. Targeting web developers, Koel embraces some of the more modern web technologies to do its job..
", + "tags": [ + "music", + "self-hosted" + ], + "repository": "https://github.com/koel/docker/", + "image": "https://hub.docker.com/r/phanan/koel", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Koel/screenshots/1.jpg", + "https://cosmos.manhtuong.net/servapps/Koel/screenshots/1.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Koel/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Koel/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Listmonk", + "description": "listmonk is a self-hosted, high performance mailing list and newsletter manager. It comes as a standalone binary and the only dependency is a Postgres database.", + "url": "", + "longDescription": "listmonk is a self-hosted, high performance mailing list and newsletter manager. It comes as a standalone binary and the only dependency is a Postgres database.
", + "tags": [ + "listmonk", + "standalone", + "newsletter", + "mailing", + "self-hosted", + "linux", + "Multi-threaded", + "high-throughput" + ], + "repository": "https://github.com/knadh/listmonk/", + "image": "https://hub.docker.com/r/listmonk/listmonk/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Listmonk/screenshots/lists.png", + "https://cosmos.manhtuong.net/servapps/Listmonk/screenshots/splash.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Listmonk/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Listmonk/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Lynx", + "description": "Lynx is a URL shortener built using the MEVN stack with features such as multi-user support, ShareX integration and 2FA.", + "url": "", + "longDescription": "Lynx is a URL shortener built using the MEVN stack with features such as multi-user support, ShareX integration and 2FA.
", + "tags": [ + "Lynx", + "url", + "shortener", + "open-source", + "self-hosted", + "linux" + ], + "repository": "https://github.com/Lynx-Shortener/Lynx/", + "image": "https://hub.docker.com/r/jackbailey/lynx/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Lynx/screenshots/1.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Lynx/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Lynx/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Mattermost", + "description": "Mattermost is a secure collaboration platform for accelerating mission critical work in complex environments.", + "url": "", + "longDescription": "Mattermost is an open-source, self-hostable online chat service with file sharing, search, and integrations. It is designed as an internal chat for organisations and companies, and mostly markets itself as an open-source alternative to Slack and Microsoft Teams.
", + "tags": [ + "Mattermost", + "Chat", + "open-source", + "self-hosted", + "linux" + ], + "repository": "https://github.com/mattermost/mattermost/", + "image": "https://hub.docker.com/r/vouu/mattermost/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Mattermost/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Mattermost/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Mattermost/logo/numix-circle-for-windows-mattermost.jpg", + "compose": "https://cosmos.manhtuong.net/servapps/Mattermost/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "MinIO", + "description": "MinIO is an object storage solution that provides an Amazon Web Services S3-compatible API and supports all core S3 features. MinIO is built to deploy anywhere - public or private cloud, baremetal infrastructure, orchestrated environments, and edge infrastructure.", + "url": "", + "longDescription": "MinIO is an object storage solution that provides an Amazon Web Services S3-compatible API and supports all core S3 features. MinIO is built to deploy anywhere - public or private cloud, baremetal infrastructure, orchestrated environments, and edge infrastructure.
", + "tags": [ + "public", + "private", + "MinIO", + "storage", + "object storage", + "infrastructure", + "S3" + ], + "repository": "https://github.com/minio/minio/", + "image": "https://hub.docker.com/r/minio/minio/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/MinIO/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/MinIO/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/MinIO/logo/minio-logo.jpg", + "compose": "https://cosmos.manhtuong.net/servapps/MinIO/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "NocoDB", + "description": "NocoDB works by connecting to any relational database and transforming them into a smart spreadsheet interface! This allows you to build no-code applications collaboratively with teams. NocoDB currently works with MySQL, PostgreSQL & SQLite (only in Open Source) databases.", + "url": "", + "longDescription": "NocoDB is a no-code database platform that allows teams to collaborate and build applications with ease of a familiar and intuitive spreadsheet interface. This allows even non-developers or business users to become software creators.
", + "tags": [ + "NocoDB", + "connecting", + "database", + "transforming", + "spreadsheet", + "no-code", + "MySQL", + "PostgreSQL", + "SQLite" + ], + "repository": "https://github.com/nocodb/nocodb/", + "image": "https://hub.docker.com/r/nocodb/nocodb/tags/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/NocoDB/screenshots/277104231-e2fad786-f211-4dcb-9bd3-aaece83a6783.gif" + ], + "icon": "https://cosmos.manhtuong.net/servapps/NocoDB/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/NocoDB/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "OneDev", + "description": "OneDev is by multiple orders of magnitudes the very best CI/CD environment. Its minimal use of memory and processing resources stands in stark contrast.", + "url": "", + "longDescription": "OneDev is by multiple orders of magnitudes the very best CI/CD environment. Its minimal use of memory and processing resources stands in stark contrast.
", + "tags": [ + "Coder", + "development", + "ci/cd", + "code", + "secure", + "git", + "ci", + "cd", + "build" + ], + "repository": "https://github.com/theonedev/onedev/", + "image": "https://hub.docker.com/r/1dev/server/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Onedev/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Onedev/screenshots/fixing-build.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Onedev/logo/logo.svg", + "compose": "https://cosmos.manhtuong.net/servapps/Onedev/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Openobserve", + "description": "OpenObserve is a cloud native observability platform built specifically for logs, metrics, traces, analytics, RUM (Real User Monitoring - Performance, Errors, Session Replay) designed to work at petabyte scale", + "url": "", + "longDescription": "OpenObserve is a cloud native observability platform (Logs, Metrics, Traces) that provides ~140x lower storage costs (compared to Elasticsearch. YMMV. Could be higher or lower based on data entropy) for real life log data, significantly lower operational cost and ease of use. It can scale to petabytes of data, is highly performant and allows you to sleep better at night.
", + "tags": [ + "Openobserve", + "log", + "kibana", + "open-source", + "self-hosted", + "linux" + ], + "repository": "https://openobserve.ai/docs/quickstart/", + "image": "https://gallery.ecr.aws/zinclabs/openobserve/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Openobserve/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Openobserve/screenshots/logs.webp", + "https://cosmos.manhtuong.net/servapps/Openobserve/screenshots/traces.webp" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Openobserve/logo/Wp6HKCpz_400x400.jpg", + "compose": "https://cosmos.manhtuong.net/servapps/Openobserve/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Openvas", + "description": "OpenVAS is the scanner component of Greenbone Vulnerability Management, a software framework of several services and tools offering vulnerability scanning and vulnerability management.", + "url": "", + "longDescription": "OpenVAS is a full-featured vulnerability scanner. Its capabilities include unauthenticated and authenticated testing, various high-level and low-level internet and industrial protocols, performance tuning for large-scale scans and a powerful internal programming language to implement any type of vulnerability test
", + "tags": [ + "Openvas", + "auto", + "browser", + "vul", + "self-hosted", + "linux" + ], + "repository": "https://immauss.github.io/openvas/", + "image": "https://hub.docker.com/r/immauss/openvas/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Openvas/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Openvas/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Openvas/logo/0_lJTkWI1TOFW-dvkY.png", + "compose": "https://cosmos.manhtuong.net/servapps/Openvas/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "PasswordPusher", + "description": "Password Pusher is an opensource application to communicate passwords over the web. Links to passwords expire after a certain number of views and/or time has passed.", + "url": "", + "longDescription": "An application to securely communicate passwords over the web. Passwords automatically expire after a certain number of views and/or time has passed. Track who, what and when.
", + "tags": [ + "PasswordPusher", + "Password", + "sharing", + "self-hosted" + ], + "repository": "https://github.com/pglombardo/PasswordPusher/", + "image": "https://hub.docker.com/r/pglombardo/pwpush/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/PasswordPusher/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/PasswordPusher/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/PasswordPusher/logo/logo-transparent-sm-bare-93087ef5826.png", + "compose": "https://cosmos.manhtuong.net/servapps/PasswordPusher/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Piwigo", + "description": "Manage your photo library with Piwigo! Free and open source software to organize and share your photos and digital media on the web.", + "url": "", + "longDescription": "Piwigo can be deployed using various methods in a hosting environment. Users download the current version of Piwigo from Piwigo.org. Either they download the full archive and upload the source code to their hosting environment or they download the NetInstall (a single PHP file), upload it to their hosting environment and let it download the full archive automatically.
", + "tags": [ + "CTFd", + "Capture The Flag", + "server", + "open-source", + "self-hosted", + "linux" + ], + "repository": "https://github.com/linuxserver/docker-piwigo", + "image": "https://hub.docker.com/r/linuxserver/piwigo/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Piwigo/screenshots/1.jpg", + "https://cosmos.manhtuong.net/servapps/Piwigo/screenshots/2.jpg" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Piwigo/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Piwigo/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Plausible-Analytics", + "description": "Plausible Analytics is an easy to use, lightweight (< 1 KB), open source and privacy-friendly alternative to Google Analytics.", + "url": "", + "longDescription": "Plausible Analytics is an easy to use, lightweight (< 1 KB), open source and privacy-friendly alternative to Google Analytics. It doesn’t use cookies and is fully compliant with GDPR, CCPA and PECR. You can self-host or have us run Plausible for you in the cloud. Here's the live demo of our own website stats.
", + "tags": [ + "Plausible", + "Analytics", + "privacy-friendly", + "alternative", + "Google Analytics", + "linux" + ], + "repository": "https://github.com/plausible/analytics/", + "image": "https://github.com/plausible/hosting/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Plausible/screenshots/0b731800-3993-11eb-9f33-49141eaf7a8f.jpg", + "https://cosmos.manhtuong.net/servapps/Plausible/screenshots/plausible-analytics-for-wordpress-a-review.jpg" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Plausible/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Plausible/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "PocketBase", + "description": "PocketBase is an open source backend consisting of embedded database (SQLite) with realtime subscriptions, built-in auth management, convenient dashboard UI and simple REST-ish API.", + "url": "", + "longDescription": "PocketBase is an open source backend consisting of embedded database (SQLite) with realtime subscriptions, built-in auth management, convenient dashboard UI and simple REST-ish API.
", + "tags": [ + "PocketBase", + "API", + "open-source", + "self-hosted", + "linux", + "SQLite" + ], + "repository": "https://ghcr.io/muchobien/pocketbase/", + "image": "https://ghcr.io/muchobien/pocketbase/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Pocketbase/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Pocketbase/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Pocketbase/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Pocketbase/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "PrivateBin", + "description": "PrivateBin is a minimalist, open source online pastebin where the server has zero knowledge of pasted data.", + "url": "", + "longDescription": "PrivateBin is a minimalist, open source online pastebin where the server has zero knowledge of pasted data. Data is encrypted / decrypted in the browser using 256bit AES in Galois Counter mode.
", + "tags": [ + "pastebin", + "note", + "code", + "share", + "self-hosted", + "linux", + "file-upload", + "file" + ], + "repository": "https://github.com/PrivateBin/PrivateBin/", + "image": "https://hub.docker.com/r/privatebin/nginx-fpm-alpine", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/PrivateBin/screenshots/Screenshot_1.png", + "https://cosmos.manhtuong.net/servapps/PrivateBin/screenshots/bootstrap-dark.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/PrivateBin/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/PrivateBin/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "qBittorrent", + "description": "The qBittorrent project aims to provide an open-source software alternative to µTorrent.", + "url": "", + "longDescription": "qBittorrent is a cross-platform free and open-source BitTorrent client written in native C++. It relies on Boost, OpenSSL, zlib, Qt 6 toolkit and the libtorrent-rasterbar library (for the torrent back-end), with an optional search engine written in Python.
", + "tags": [ + "qBittorrent", + "torrent", + "open-source", + "self-hosted", + "linux" + ], + "repository": "https://github.com/linuxserver/docker-qbittorrent/", + "image": "https://hub.docker.com/r/linuxserver/qbittorrent/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Qbittorrent/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Qbittorrent/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Qbittorrent/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Qbittorrent/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "RabbitMQ", + "description": "RabbitMQ is lightweight and easy to deploy on premises and in the cloud. It supports multiple messaging protocols and streaming.", + "url": "", + "longDescription": "RabbitMQ is lightweight and easy to deploy on premises and in the cloud. It supports multiple messaging protocols and streaming. RabbitMQ can be deployed in distributed and federated configurations to meet high-scale, high-availability requirements.
", + "tags": [ + "RabbitMQ", + "lightweight", + "deploy", + "premises", + "messaging", + "streaming" + ], + "repository": "https://github.com/docker-library/rabbitmq/", + "image": "https://hub.docker.com/_/rabbitmq/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/RabbitMQ/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/RabbitMQ/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/RabbitMQ/logo/logoimage.png", + "compose": "https://cosmos.manhtuong.net/servapps/RabbitMQ/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Seekr", + "description": "Seekr is a multi-purpose toolkit for gathering and managing OSINT-data with a sleek web interface. Our desktop view enables you to have all of your favourite OSINT tools integrated in one.", + "url": "", + "longDescription": "Seekr is a multi-purpose toolkit for gathering and managing OSINT-data with a sleek web interface. Our desktop view enables you to have all of your favourite OSINT tools integrated in one. The backend is written in Go with BadgerDB as database and it offers a wide range of features for data collection, organization, and analysis. Whether you're a researcher, investigator, or just someone looking to gather information, seekr makes it easy to find and manage the data you need. Give it a try and see how it can streamline your OSINT workflow.
", + "tags": [ + "Seekr", + "OSINT", + "data", + "toolkit", + "sleek", + "organization", + "analysis", + "data collection" + ], + "repository": "https://github.com/Leak-VN/seekr/", + "image": "https://hub.docker.com/r/vouu/seekr/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Seekr/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Seekr/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Seekr/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Seekr/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "ShareX", + "description": "The next generation ShareX / File upload server.", + "url": "", + "longDescription": "A ShareX/file upload server that is easy to use, packed with features, and with an easy setup!..
", + "tags": [ + "file", + "filemanager", + "upload", + "sharefile", + "self-hosted" + ], + "repository": "https://github.com/diced/zipline/", + "image": "https://github.com/diced/zipline", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/ShareX/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/ShareX/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/ShareX/logo/zipline-desktop.png", + "compose": "https://cosmos.manhtuong.net/servapps/ShareX/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Social-Analyzer", + "description": "The analysis and public extracted information from this OSINT tool could help investigate profiles related to suspicious or malicious activities such as cyberbullying, cyber grooming, cyberstalking, and spreading misinformation.", + "url": "", + "longDescription": "Social Analyzer - API, CLI, and Web App for analyzing & finding a person's profile across +1000 social media websites. It includes different analysis and detection modules, and you can choose which modules to use during the investigation process
", + "tags": [ + "misinformation", + "Analyzer", + "Social", + "API", + "CLI", + "detection" + ], + "repository": "https://github.com/Leak-VN/social-analyzer/", + "image": "https://hub.docker.com/r/vouu/social-analyzer/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Social-Analyzer/screenshots/intro_fast.gif", + "https://cosmos.manhtuong.net/servapps/Social-Analyzer/screenshots/structure.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Social-Analyzer/logo/logo.jpg", + "compose": "https://cosmos.manhtuong.net/servapps/Social-Analyzer/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm" + ] + }, + { + "name": "SurrealDB", + "description": "SurrealDB offers a dynamic and adaptable platform for business. With an integrated suite of cutting-edge database solutions, tools, and services, SurrealDB empowers your workforce to discover innovative answers using products meticulously crafted to meet their requirements.", + "url": "", + "longDescription": "SurrealDB offers a dynamic and adaptable platform for business. With an integrated suite of cutting-edge database solutions, tools, and services, SurrealDB empowers your workforce to discover innovative answers using products meticulously crafted to meet their requirements.
", + "tags": [ + "SurrealDB", + "dynamic", + "adaptable", + "platform", + "cutting-edge database", + "services" + ], + "repository": "https://github.com/surrealdb/surrealdb/", + "image": "https://hub.docker.com/r/surrealdb/surrealdb/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Surrealdb/screenshots/SurrealDB-1.webp", + "https://cosmos.manhtuong.net/servapps/Surrealdb/screenshots/interface-218ee2fc452bcc67d331ad0fcdfdd015.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Surrealdb/logo/1_0WNVU1HfJvNIGwkhG274Qw.png", + "compose": "https://cosmos.manhtuong.net/servapps/Surrealdb/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Tasks.md", + "description": "A self-hosted, file based task management board that supports Markdown syntax.", + "url": "", + "longDescription": "Tasks.md A self-hosted, file based task management board that supports Markdown syntax.
", + "tags": [ + "Tasks", + "management", + "Markdown", + "open-source", + "self-hosted", + "linux" + ], + "repository": "https://github.com/BaldissaraMatheus/Tasks.md/", + "image": "https://hub.docker.com/r/baldissaramatheus/tasks.md/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Tasks.md/screenshots/demonstration.gif" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Tasks.md/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Tasks.md/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "TeamMapper", + "description": "Mindmapping made simple: Host and create your own mindmaps. Share your mindmap sessions with your team and collaborate on mindmaps.", + "url": "", + "longDescription": "TeamMapper is based on mindmapp. In contrast to mindmapp, TeamMapper features shared mindmapping sessions for your team based on websockets
", + "tags": [ + "Tasks", + "management", + "Markdown", + "open-source", + "self-hosted", + "linux" + ], + "repository": "https://github.com/Leak-VN/teammapper/", + "image": "https://hub.docker.com/r/vouu/teammapper/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/TeamMapper/screenshots/csm_mindmapp_vorschaubild_73fbdf41c6.png", + "https://cosmos.manhtuong.net/servapps/TeamMapper/screenshots/teammapper-screenshot.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/TeamMapper/logo/teammapper-logo.png", + "compose": "https://cosmos.manhtuong.net/servapps/TeamMapper/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Teldrive", + "description": "Telegram Drive is a powerful utility that enables you to create your own cloud storage service using Telegram as the backend.", + "url": "", + "longDescription": "Telegram Drive is a powerful utility that enables you to create your own cloud storage service using Telegram as the backend.
", + "tags": [ + "Telegram Drive", + "Telegram", + "powerful", + "storage", + "self-hosted", + "backend" + ], + "repository": "https://github.com/divyam234/teldrive/", + "image": "https://ghcr.io/divyam234/teldrive/server/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Teldrive/screenshots/1.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Teldrive/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Teldrive/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Thelounge", + "description": "The Lounge is a progressive web app (PWA), and can be installed from any modern browser for a native-like experience without having a dedicated app.", + "url": "", + "longDescription": "The Lounge is a progressive web app (PWA), and can be installed from any modern browser for a native-like experience without having a dedicated app.
", + "tags": [ + "chat", + "IRC", + "PWA", + "open-source", + "self-hosted", + "linux", + "thelounge" + ], + "repository": "https://ghcr.io/thelounge/thelounge/", + "image": "https://ghcr.io/thelounge/thelounge/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Thelounge/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Thelounge/screenshots/Screenshot_from_2020-02-27_13-07-07.webp" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Thelounge/logo/TL_Grey&Yellow_Vertical_logotype_Transparent_Bg.png", + "compose": "https://cosmos.manhtuong.net/servapps/Thelounge/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "ThingsBoard", + "description": "ThingsBoard is an open-source IoT platform for data collection, processing, visualization, and device management.", + "url": "", + "longDescription": "ThingsBoard is an open-source IoT platform that enables rapid development, management, and scaling of IoT projects. Our goal is to provide the out-of-the-box IoT cloud or on-premises solution that will enable server-side infrastructure for your IoT applications.
", + "tags": [ + "ThingsBoard", + "IOT", + "browser", + "open-source", + "self-hosted", + "linux" + ], + "repository": "https://thingsboard.io/docs/user-guide/install/docker", + "image": "https://hub.docker.com/r/thingsboard/tb-postgres", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Thingsboard/screenshots/152984256-eb48564a-645c-468d-912b-f554b63104a5.gif", + "https://cosmos.manhtuong.net/servapps/Thingsboard/screenshots/152984528-0054ed55-8b8b-4cda-ba45-02fe95a81222.gif" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Thingsboard/logo/301520891_569750594942636_5308830562915468264_n.png", + "compose": "https://cosmos.manhtuong.net/servapps/Thingsboard/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "TinyFileManager", + "description": "TinyFileManager is web based PHP file manager and it is a simple, fast and small size in single-file PHP file that can be dropped into any folder on your server, multi-language ready web application for storing, uploading, editing and managing files and folders online via web browser.", + "url": "", + "longDescription": "TinyFileManager is web based PHP file manager and it is a simple, fast and small size in single-file PHP file that can be dropped into any folder on your server, multi-language ready web application for storing, uploading, editing and managing files and folders online via web browser. The Application runs on PHP 5.5+, It allows the creation of multiple users and each user can have its own directory and a build-in support for managing text files with cloud9 IDE and it supports syntax highlighting for over 150+ languages and over 35+ themes.
", + "tags": [ + "TinyFileManager", + "FileManager", + "single-file", + "multi-language", + "highlighting", + "linux" + ], + "repository": "https://github.com/Leak-VN/tinyfilemanager", + "image": "https://hub.docker.com/r/vouu/tinyfilemanager", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/TinyFileManager/screenshots/screenshot.gif" + ], + "icon": "https://cosmos.manhtuong.net/servapps/TinyFileManager/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/TinyFileManager/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Trilium", + "description": "Trilium Notes is a hierarchical note taking application with focus on building large personal knowledge bases.", + "url": "", + "longDescription": "Trilium Notes is a hierarchical note taking application with focus on building large personal knowledge bases.
", + "tags": [ + "note", + "knowledge", + "hierarchical", + "open-source", + "self-hosted", + "linux" + ], + "repository": "https://github.com/zadam/trilium/", + "image": "https://hub.docker.com/r/zadam/trilium/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Trilium/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Trilium/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Trilium/logo/154-1540944_noun-project-trilium-notes-hd-png-download.png", + "compose": "https://cosmos.manhtuong.net/servapps/Trilium/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Umami", + "description": "Umami is a simple, fast, privacy-focused alternative to Google Analytics.", + "url": "", + "longDescription": "Umami is a simple, fast, privacy-focused, open-source analytics solution. Umami is a better alternative to Google Analytics because it gives you total control of your data and does not violate the privacy of your users.
", + "tags": [ + "Analytics", + "Umami", + "privacy-focused", + "alternative", + "self-hosted", + "linux" + ], + "repository": "https://github.com/umami-software/umami", + "image": "https://github.com/umami-software/umami/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Umami/screenshots/1.jpg", + "https://cosmos.manhtuong.net/servapps/Umami/screenshots/2.jpg" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Umami/logo/_u-7zTZM_400x400.jpg", + "compose": "https://cosmos.manhtuong.net/servapps/Umami/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "WireGuard Easy", + "description": "WG Easy simplifies the setup and management of WireGuard VPNs with a user-friendly interface.", + "url": "", + "longDescription": "WireGuard Easy is a tool for easily setting up WireGuard VPNs. It simplifies the process of configuring and managing WireGuard VPNs by providing a user-friendly interface. WireGuard Easy allows users to quickly create and manage WireGuard configurations, making it simpler to set up secure VPN connections.", + "tags": [ + "WireGuard", + "VPN", + "networking", + "management" + ], + "repository": "https://github.com/wg-easy/wg-easy", + "image": "https://hub.docker.com/r/weejewel/wg-easy", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/WG-Easy/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/WG-Easy/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/WG-Easy/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/WG-Easy/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "WatchState", + "description": "WatchState This tool primary goal is to sync your backends play state without relying on third party services, out of the box, this tool support Jellyfin, Plex and Emby media servers", + "url": "", + "longDescription": "WatchState This tool primary goal is to sync your backends play state without relying on third party services, out of the box, this tool support Jellyfin, Plex and Emby media servers
", + "tags": [ + "media", + "movies", + "streaming", + "music", + "self-hosted", + "linux" + ], + "repository": "https://github.com/ArabCoders/watchstate/", + "image": "https://github.com/ArabCoders/watchstate/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/WatchState/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/WatchState/screenshots/2.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/WatchState/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/WatchState/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Webgoat", + "description": "WebGoat is a deliberately insecure web application maintained by OWASP designed to teach web application security lessons..", + "url": "", + "longDescription": "This program is a demonstration of common server-side application flaws. The exercises are intended to be used by people to learn about application security and penetration testing techniques
While running this program your machine will be extremely vulnerable to attack. You should disconnect from the Internet while using this program. WebGoat's default configuration binds to localhost to minimize the exposure
This program is for educational purposes only. If you attempt these techniques without authorization, you are very likely to get caught. If you are caught engaging in unauthorized hacking, most companies will fire you. Claiming that you were doing security research will not work as that is the first thing that all hackers claim
Wiki.js is a wiki engine running on Node.js and written in JavaScript. It is free software released under the Affero GNU General Public License. It is available as a self-hosted solution
", + "tags": [ + "Wiki", + "Software", + "remote", + "self-hosted", + "js", + "workspace", + "collaboration" + ], + "repository": "https://github.com/requarks/wiki", + "image": "https://ghcr.io/requarks/wiki/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Wikijs/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Wikijs/screenshots/wikijs.png" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Wikijs/logo/wikijs-full-2021-768t-svg-yOi8.png", + "compose": "https://cosmos.manhtuong.net/servapps/Wikijs/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, + { + "name": "Yopass", + "description": "Yopass is a project for sharing secrets in a quick and secure manner*. The sole purpose of Yopass is to minimize the amount of passwords floating around in ticket management systems.....", + "url": "", + "longDescription": "Yopass is a project for sharing secrets in a quick and secure manner*. The sole purpose of Yopass is to minimize the amount of passwords floating around in ticket management systems, Slack messages and emails. The message is encrypted/decrypted locally in the browser and then sent to yopass without the decryption key which is only visible once during encryption, yopass then returns a one-time URL with specified expiry date.
", + "tags": [ + "Yopass", + "Password", + "sharing", + "self-hosted" + ], + "repository": "https://github.com/jhaals/yopass/", + "image": "https://github.com/jhaals/yopass/", + "screenshots": [ + "https://cosmos.manhtuong.net/servapps/Yopass/screenshots/1.png", + "https://cosmos.manhtuong.net/servapps/Yopass/screenshots/2.gif" + ], + "icon": "https://cosmos.manhtuong.net/servapps/Yopass/logo/icon.png", + "compose": "https://cosmos.manhtuong.net/servapps/Yopass/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + } + ], "cosmos-cloud": [ { "name": "Actual", @@ -425,6 +4153,31 @@ "arm64" ] }, + { + "name": "Cube-js", + "description": "Cube is the semantic layer for building data applications. It helps data engineers and application developers access data from modern data stores, organize it into consistent definitions, and deliver it to every application.", + "url": "", + "longDescription": "Cube was designed to work with all SQL-enabled data sources, including cloud data warehouses like Snowflake or Google BigQuery, query engines like Presto or Amazon Athena, and application databases like Postgres. Cube has a built-in relational caching engine to provide sub-second latency and high concurrency for API requests. < /p>", + "tags": [ + "Automated", + "data applications", + "self-hosted", + "databases" + ], + "repository": "https://github.com/cube-js/cube/", + "image": "https://hub.docker.com/r/cubejs/cube", + "screenshots": [ + "https://azukaar.github.io/cosmos-servapps-official/servapps/Cube-js/screenshots/1.png", + "https://azukaar.github.io/cosmos-servapps-official/servapps/Cube-js/screenshots/2.png", + "https://azukaar.github.io/cosmos-servapps-official/servapps/Cube-js/screenshots/3.png" + ], + "icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/Cube-js/icon.png", + "compose": "https://azukaar.github.io/cosmos-servapps-official/servapps/Cube-js/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, { "name": "Dashy", "description": "Dashy helps you create a unified dashboard for your self-hosted services. It offers real-time status monitoring, widgets, instant search, and customization options. Dashy is privacy-focused, cross-platform, and can be easily deployed using Docker. It's a user-friendly solution to streamline access to your self-hosted applications.", @@ -677,6 +4430,32 @@ "arm64" ] }, + { + "name": "EMQX", + "description": "The most scalable open-source MQTT broker for IoT, IIoT, connected vehicles, and more.", + "url": "", + "longDescription": "
EMQX is the world's most scalable open-source MQTT broker with a high performance that connects 100M+ IoT devices in 1 cluster, while maintaining 1M message per second throughput and sub-millisecond latency.
EMQX supports multiple open standard protocols like MQTT, HTTP, QUIC, and WebSocket. It's 100% compliant with MQTT 5.0 and 3.x standard, and secures bi-directional communication with MQTT over TLS/SSL and various authentication mechanisms.
With the built-in powerful SQL-based rules engine, EMQX can extract, filter, enrich and transform IoT data in real-time. In addition, it ensures high availability and horizontal scalability with a masterless distributed architecture, and provides ops-friendly user experience and great observability.
EMQX boasts more than 20K+ enterprise users across 50+ countries and regions, connecting 100M+ IoT devices worldwide, and is trusted by over 400 customers in mission-critical scenarios of IoT, IIoT, connected vehicles, and more, including over 70 Fortune 500 companies like HPE, VMware, Verifone, SAIC Volkswagen, and Ericsson.
Default Login : admin/public
", + "tags": [ + "mqtt", + "emqx", + "iot", + "home assistant", + "smart home", + "home automation" + ], + "repository": "https://github.com/emqx/emqx", + "image": "https://hub.docker.com/_/emqx", + "screenshots": [ + "https://azukaar.github.io/cosmos-servapps-official/servapps/EMQX/screenshots/1.png", + "https://azukaar.github.io/cosmos-servapps-official/servapps/EMQX/screenshots/2.png" + ], + "icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/EMQX/icon.png", + "compose": "https://azukaar.github.io/cosmos-servapps-official/servapps/EMQX/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, { "name": "ESPHome", "description": "ESPHome is a system to control your microcontrollers by simple yet powerful configuration files and control them remotely through Home Automation systems.", @@ -975,6 +4754,31 @@ "arm64" ] }, + { + "name": "Frigate-NVR", + "description": "Frigate-NVR is an open-source Network Video Recorder focusing on object detection for home automation and monitoring systems.", + "url": "", + "longDescription": "Frigate-NVR is an open-source NVR (Network Video Recorder) designed for home automation and monitoring systems. It utilizes machine learning for object detection in surveillance footage. Frigate-NVR offers features like real-time alerts, customizable zones, and integrations with various camera systems. It is built to provide a flexible and customizable video surveillance solution for home users.", + "tags": [ + "Frigate-NVR", + "NVR", + "surveillance", + "home automation", + "object detection" + ], + "repository": "https://github.com/blakeblackshear/frigate", + "image": "https://ghcr.io/blakeblackshear/frigate:stable", + "screenshots": [ + "https://azukaar.github.io/cosmos-servapps-official/servapps/Frigate-NVR/screenshots/1.png", + "https://azukaar.github.io/cosmos-servapps-official/servapps/Frigate-NVR/screenshots/2.png" + ], + "icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/Frigate-NVR/icon.png", + "compose": "https://azukaar.github.io/cosmos-servapps-official/servapps/Frigate-NVR/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, { "name": "Ghost", "description": "Ghost is an open source, professional publishing platform built on a modern Node.js technology stack — designed for teams who need power, flexibility and performance", @@ -1735,6 +5539,28 @@ "amd64" ] }, + { + "name": "Manyfold", + "description": "A self-hosted digital asset manager for 3d print files", + "url": "", + "longDescription": "Manyfold is a Digital Asset Manager, specifically designed for 3D print files. Create a library pointing at your files on disk, and it will scan for models and parts. It assumes that any folders containing STL or OBJ files are models, and the files within them are parts. You can then view the files easily through your browser!
", + "tags": [ + "3d models", + "3d printing" + ], + "repository": "https://github.com/manyfold3d/manyfold", + "image": "ghcr.io/manyfold3d/manyfold", + "screenshots": [ + "https://azukaar.github.io/cosmos-servapps-official/servapps/Manyfold/screenshots/1.png", + "https://azukaar.github.io/cosmos-servapps-official/servapps/Manyfold/screenshots/2.png" + ], + "icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/Manyfold/icon.png", + "compose": "https://azukaar.github.io/cosmos-servapps-official/servapps/Manyfold/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, { "name": "Mastodon", "description": "Mastodon is a free and open-source self-hosted social networking service. It features decentralization, ability to build your own community, per-post privacy settings, anti-abuse tools, and supports multimedia attachments. Mastodon can be run on any platform that supports Ruby, Node.js, and PostgreSQL, including various Linux distributions and Docker.", @@ -1842,6 +5668,31 @@ "arm64" ] }, + { + "name": "Minecraft Bedrock Server", + "description": "Minecraft Bedrock Server (Docker) allows easy deployment and management of a Bedrock Dedicated Server using Docker containers.", + "url": "", + "longDescription": "Minecraft Bedrock Server (Docker) is a containerized version of the Bedrock Dedicated Server, providing a selectable version and configurable environment variables for managing a Minecraft Bedrock server instance. It allows users to run a Bedrock Dedicated Server within a Docker container, offering features like version selection, environment variable configuration for server properties, and management through Docker Compose or Kubernetes.", + "tags": [ + "minecraft", + "bedrock", + "server", + "docker", + "containerization" + ], + "repository": "https://github.com/itzg/docker-minecraft-bedrock-server/tree/master", + "image": "https://hub.docker.com/r/itzg/minecraft-bedrock-server", + "screenshots": [ + "https://azukaar.github.io/cosmos-servapps-official/servapps/Minecraft-Bedrock-Server/screenshots/1.png", + "https://azukaar.github.io/cosmos-servapps-official/servapps/Minecraft-Bedrock-Server/screenshots/2.png" + ], + "icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/Minecraft-Bedrock-Server/icon.png", + "compose": "https://azukaar.github.io/cosmos-servapps-official/servapps/Minecraft-Bedrock-Server/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, { "name": "Minecraft", "description": "Minecraft is a sandbox video game developed by Mojang Studios that allows players to explore, interact with, and modify a dynamically-generated map made of blocks. Players can build structures, craft items, and interact with the game world in a variety of ways. The game supports multiple gameplay styles and modes, and is available on a wide range of platforms.", @@ -2117,8 +5968,7 @@ "icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/OhMyForm/icon.png", "compose": "https://azukaar.github.io/cosmos-servapps-official/servapps/OhMyForm/cosmos-compose.json", "supported_architectures": [ - "amd64", - "arm64" + "amd64" ] }, { @@ -2182,7 +6032,7 @@ "name": "Openspeedtest", "description": "HTML5 Internet Speed Test. no Flash or Java!", "url": "", - "longDescription": "SpeedTest by OpenSpeedTest™ is a Free and Open-Source HTML5 Network Performance Estimation Tool Written in Vanilla Javascript and only uses built-in Web APIs like XMLHttpRequest (XHR), HTML, CSS, JS, & SVG. No Third-Party frameworks or libraries are Required. All we need is a static web server like NGINX. This project was started in 2011 and moved to OpenSpeedTest.com dedicated Project/Domain Name in 2013.
", + "longDescription": "SpeedTest by OpenSpeedTest™ is a Free and Open-Source HTML5 Network Performance Estimation Tool Written in Vanilla Javascript and only uses built-in Web APIs like XMLHttpRequest (XHR), HTML, CSS, JS, & SVG. No Third-Party frameworks or libraries are Required. All we need is a static web server like NGINX. This project was started in 2011 and moved to OpenSpeedTest.com dedicated Project/Domain Name in 2013.
For better results choose expose ports option and access speedtest on cosmos-ip:3333 (or the port you provided).", "tags": [ "self-hosted", "management" @@ -2986,28 +6836,6 @@ "arm64" ] }, - { - "name": "Van_DAM", - "description": "A self-hosted digital asset manager for 3d print files", - "url": "", - "longDescription": "
VanDAM is a Digital Asset Manager (DAM), specifically designed for 3D print files. Create a library pointing at your files on disk, and it will scan for models and parts. It assumes that any folders containing STL or OBJ files are models, and the files within them are parts. You can then view the files easily through your browser!
", - "tags": [ - "3d models", - "3d printing" - ], - "repository": "https://github.com/Floppy/van_dam", - "image": "ghcr.io/floppy/van_dam", - "screenshots": [ - "https://azukaar.github.io/cosmos-servapps-official/servapps/Van_DAM/screenshots/1.jpg", - "https://azukaar.github.io/cosmos-servapps-official/servapps/Van_DAM/screenshots/2.jpg" - ], - "icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/Van_DAM/icon.png", - "compose": "https://azukaar.github.io/cosmos-servapps-official/servapps/Van_DAM/cosmos-compose.json", - "supported_architectures": [ - "amd64", - "arm64" - ] - }, { "name": "Vaultwarden", "description": "Vaultwarden is an open-source, self-hosted password management server compatible with Bitwarden apps. Written in Rust, it provides a secure way to store and synchronize sensitive data across devices with lightweight and low resource usage. Vaultwarden supports various platforms, including Linux, Windows, MacOS, and Docker.", @@ -3088,6 +6916,34 @@ "arm64" ] }, + { + "name": "changedetection", + "description": "changedetection.io is a free website change monitoring tool. Receive alerts by email, SMS or Slack when your website is down or has unexpected changes.", + "url": "", + "longDescription": "ChangeDetection.io is an advanced web monitoring service designed to track changes across websites. This tool is particularly useful for individuals and businesses needing to stay informed about updates, new content, or alterations on specific web pages. It works by regularly scanning designated websites and comparing current page content with previously stored versions. Users can receive notifications whenever a change is detected. This functionality is invaluable for competitive analysis, tracking regulatory changes, monitoring competitors' pricing strategies, or staying updated with news or content updates. The service offers a user-friendly interface, customizable alert settings, and robust scanning capabilities, making it a go-to solution for comprehensive web change detection.", + "tags": [ + "monitor", + "website", + "change", + "detection", + "alert", + "open source", + "diff", + "tracker", + "utilities" + ], + "repository": "https://github.com/dgtlmoon/changedetection.io", + "image": "https://hub.docker.com/r/linuxserver/changedetection.io", + "screenshots": [ + "https://azukaar.github.io/cosmos-servapps-official/servapps/changedetection.io/screenshots/1.png" + ], + "icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/changedetection.io/icon.png", + "compose": "https://azukaar.github.io/cosmos-servapps-official/servapps/changedetection.io/cosmos-compose.json", + "supported_architectures": [ + "amd64", + "arm64" + ] + }, { "name": "memos", "description": "A privacy-first, lightweight note-taking service. Easily capture and share your great thoughts.", @@ -3187,6 +7043,28 @@ "arm64" ] }, + { + "name": "Speedtest Tracker", + "description": "Speedtest Tracker is a self-hosted internet performance tracking application that runs speedtest checks against Ookla's Speedtest service.", + "url": "", + "longDescription": "Speedtest Tracker is a self-hosted internet performance tracking application that runs speedtest checks against Ookla's Speedtest service. It allows you to monitor your network's speed and performance over time, building a history of your internet's performance so that you can be informed when you're not receiving your ISP's advertised rates.
The default credentials are:
Email: admin@example.com
Password: password