diff --git a/README.md b/README.md index 75072ba..902c46d 100644 --- a/README.md +++ b/README.md @@ -98,6 +98,7 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and # Dashboard - [DashMachine](apps/dashboard/dashmachine.md) +- [Flame](apps/dashboard/flame.md) - [Homer](apps/dashboard/homer.md) - [SUI](apps/dashboard/sui.md) - [Organizr](https://github.com/causefx/Organizr) 🔗 diff --git a/apps/dashboard/flame.md b/apps/dashboard/flame.md new file mode 100644 index 0000000..eebb33d --- /dev/null +++ b/apps/dashboard/flame.md @@ -0,0 +1,31 @@ +# Flame +- no-code configuration! +- clear UI and configurable (themes, custom CSS) +- nice features: app list, bookmark list +- add bookmark is not linkable (not possible to automate adding bookmarks) + +
+ +- [Github repo](https://github.com/pawelmalak/flame) + + +![Screenshot](flame.png) + +## docker-compose.yml +```yml +--- +version: '3.6' + +services: + flame: + image: pawelmalak/flame + container_name: flame + restart: unless-stopped + ports: + - 5005:5005 + environment: + - PASSWORD=admin123 + volumes: + - ./data:/app/data + - /var/run/docker.sock:/var/run/docker.sock # optional but required for Docker integration +``` diff --git a/apps/dashboard/flame.png b/apps/dashboard/flame.png new file mode 100644 index 0000000..5e9f578 Binary files /dev/null and b/apps/dashboard/flame.png differ