diff --git a/servapps/Dashy/cosmos-compose.json b/servapps/Dashy/cosmos-compose.json new file mode 100644 index 00000000..6e7d361a --- /dev/null +++ b/servapps/Dashy/cosmos-compose.json @@ -0,0 +1,53 @@ +{ + "cosmos-installer": { + "form": [ + { + "name": "configPath", + "label": "What is the path to your conf.yml? (leave empty to not mount anything)", + "initialValue": "{DefaultDataPath}/app/public/conf.yml", + "type": "text" + } + ] + }, + "services": { + "{ServiceName}": { + "image": "lissy93/dashy:latest", + "container_name": "{ServiceName}", + "UID": 1000, + "GID": 1000, + "restart": "always", + "environment": [ + "NODE_ENV=production" + ], + "labels": { + "cosmos-icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/Dashy/icon.png", + "cosmos-force-network-secured": "true", + "cosmos-auto-update": "true" + }, + "volumes": [ + {if Context.configPath} + { + "source": "{Context.configPath}", + "target": "/app/public/conf.yml", + "type": "bind" + } + {/if} + ], + "routes": [ + { + "name": "{ServiceName}", + "description": "Expose {ServiceName} to the web", + "useHost": true, + "target": "http://{ServiceName}:80", + "mode": "SERVAPP", + "Timeout": 14400000, + "ThrottlePerMinute": 12000, + "BlockCommonBots": true, + "SmartShield": { + "Enabled": true + } + } + ] + } + } +} diff --git a/servapps/Dashy/description.json b/servapps/Dashy/description.json new file mode 100644 index 00000000..3863933e --- /dev/null +++ b/servapps/Dashy/description.json @@ -0,0 +1,25 @@ +{ + "name": "Dashy", + "longDescription": "

Dashy helps you organize your self-hosted services by making them accessible from a single place.

With Dashy, you can create a personalized dashboard for all your self-hosted apps and services. It offers a user-friendly web interface that allows you to organize your services, display real-time status monitoring, use widgets to showcase information, and enable instant search for quick access to your applications. Dashy is highly customizable, supporting various color themes, icon options, and authentication methods for multi-user access.

It's designed with a focus on privacy, offers multi-language support, and can be easily set up with Docker or deployed on bare metal. Dashy is under active development, continually adding new features, and is 100% free and open-source.

", + "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.", + "tags": [ + "self-hosted services", + "dashboard", + "web interface", + "widgets", + "customization", + "authentication", + "privacy-focused", + "open-source", + "Docker", + "cross-platform", + "multi-language support" + ], + "repository": "https://github.com/Lissy93/dashy", + "image": "https://hub.docker.com/r/lissy93/dashy", + "supported_architectures": [ + "amd64", + "arm32v7", + "arm64v8" + ] +} diff --git a/servapps/Dashy/icon.png b/servapps/Dashy/icon.png new file mode 100644 index 00000000..4f0a6198 Binary files /dev/null and b/servapps/Dashy/icon.png differ diff --git a/servapps/Dashy/screenshots/1.png b/servapps/Dashy/screenshots/1.png new file mode 100644 index 00000000..73f94dc5 Binary files /dev/null and b/servapps/Dashy/screenshots/1.png differ diff --git a/servapps/Dashy/screenshots/2.png b/servapps/Dashy/screenshots/2.png new file mode 100644 index 00000000..43422a02 Binary files /dev/null and b/servapps/Dashy/screenshots/2.png differ