Flame is self-hosted start page

 Its design is inspired (heavily) by SUI. Flame is very easy to set up and use. With built-in editors, you can set up your very own application hub in no time – no file editing necessary.


Functionality:

  • 📝 Create, update, and delete your applications and bookmarks directly from the app using built-in GUI editors
  • 📌 Pin your favorite items to the home screen for quick and easy access
  • 🔍 Integrated search bar with local filtering, 11 web search providers and the ability to add your own
  • 🔑 Authentication system to protect your settings, apps and bookmarks
  • 🔨 Dozens of options to customize the Flame interface to your needs, including support for custom CSS and 15 built-in color themes
  • ☀️ Weather widget with current temperature, cloud coverage and animated weather status
  • 🐳 Docker integration to automatically pick and add apps based on their labels

docker-compose.yml file:

version: '2.1'
services:
  flame:
    image: pawelmalak/flame:latest
    container_name: flame
    volumes:
      - ./data:/app/data
      - /var/run/docker.sock:/var/run/docker.sock # optional but required for Docker integration feature
    ports:
      - 9089:5005
    environment:
      - PASSWORD=DEFINE_YOUR_PASSWORD
    restart: unless-stopped

Source: https://hub.docker.com/r/pawelmalak/flame, https://github.com/gregorgodler/flame