Skip to content

Deployment via Docker

Prerequisites

Docker Compose Configuration

Create a docker-compose.yml file with the following content:

yaml
version: "3"

services:
  feedback-fusion:
    image: ghcr.io/onelitefeathernet/feedback-fusion:latest
    container_name: feedback-fusion
    ports:
      - "8000:8000"
    environment:
      RUST_LOG: INFO 
      FEEDBACK_FUSION_CONFIG: /path/to/container/config
    restart: unless-stopped
    volumes:
      - /path/to/config:/path/to/container/config

Refer to the configuration documentation for the config file details.

Afterwards start the application:

sh
docker compose up -d