Skip to content

v2.4.2 Release

Choose a tag to compare

@spiicytuna spiicytuna released this 15 Sep 18:54
· 4 commits to master since this release
5568265
  • Updated prettier v2.4.1 => 3.6.2
  • Updated skycons-ts v0.2.0 => 1.0.0 (animated weather icons)
  • Updated sequelize v6.37.7 => 6.9.0
  • Updated sqlite3 v5.0.2 => 5.1.7
  • Updated umzug v2.3.0 => 3.8.2
  • Minor update to database migration tool to support umzug 3.8.2 along with logging output to console

docker pull ghcr.io/spiicytuna/flame:2.4.2

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