Skip to main content

Docker Compose

NOTE: This versions does NOT integrate with the Docker Socket and will not automatically show Docker Containers. Please use this docker-compose to do that.

version: '2.1'
services:
  flame:
    image: pawelmalak/flame:2.0.0
    container_name: flame
    volumes:
      - /srv/dev-disk-by-uuid-8df18c42-62dc-46d8-a921-7eaad2eb7982/Configs/Flame:/app/data #map volume appropriately to your system
    ports:
      - 5006:5005 #change 5006 to whatever you need for your system
    environment:
       - PASSWORD=password #change this
    restart: unless-stopped