Skip to content

v2.4.3 Release

Choose a tag to compare

@spiicytuna spiicytuna released this 21 Dec 07:31
· 1 commit to master since this release
3f32779
  • Updated axios 1.11.0 => 1.13.2
  • Updated dotenv 10.0.0 => 17.2.3
  • Updated express 4.17.1 => 5.2.1
  • Updated jsonwebtoken 9.0.2 => 9.0.3
  • Updated nodemon 3.1.10 => 3.1.11
  • Updated prettier 3.6.2 => 3.7.4
  • Updated react 19.1.1 => 19.2.3

docker pull ghcr.io/spiicytuna/flame:2.4.3

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.

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