v2.4.1 Release
v2.4.1 (2025-09-09)
- Updated nodemon 2.0.14 => 3.1.10 (security/vulnerability)
- Updated @types/node 16.11.6 => 24.3.1 (security/vulnerability)
- Updated redux-devtools-extension (requires Redux 3) => @redux-devtools/extension (Redux 5 and beyond)
- Updated codebase to remove extinct react-beautiful-dnd for @dnd-kit (security/vulnerability)
I am not the creator of Flame but I do want to keep it alive if only for my use. In order to keep it alive, being the original dev has not updated since 2023, security patches and updates need to be applied. This "master" branch is just "Legacy" Flame with security updates and patches => so a fork + security => build => post here for others to use. If you want to get spiicy (pun intended haha) tuna-combo has customization that I have applied for my own use cases.
Easiest way is to run with docker images:
Legacy: ghcr.io/spiicytuna/flame:latest
tuna-combo: ghcr.io/spiicytuna/flame-dev:latest
version: "3.8"
services:
flame:
image: ghcr.io/spiicytuna/flame:latest
container_name: flame
restart: unless-stopped
ports:
- "5005:5005"
volumes:
- /path/to/data:/app/data
# - /path/to/favicon.ico:/app/public/icons/favicon.ico # optional change to your own favicon.co
# - /var/log/flame-dash:/app/log # optional external access.log remote logging or fail2ban
# - /var/run/docker.sock:/var/run/docker.sock # optional but required for Docker integration
environment:
- PASSWORD=changeme
healthcheck:
test: ["CMD", "curl", "-fs", "http://localhost:5005/health"]
interval: 60s
timeout: 10s
retries: 3