fluxstream docs

CLI Command Reference

Control your Fluxstream daemon services and environments directly from the CLI shell.

The fluxstream command-line tool wraps Docker Compose commands to easily initialize configuration files, manage containers, and monitor services.

The CLI daemon relies on a running Docker daemon. Ensure Docker is running on your system before executing the daemon control commands.


Command Overview

The CLI comes packaged with the following core commands:


Commands

fluxstream setup

Initializes application directories and downloads the standard Docker composition configs.

fluxstream setup
fluxstream setup

Actions performed:

  1. Validates that Docker is installed on the host system.
  2. Identifies user config paths dynamically (e.g., ~/.config/fluxstream or %APPDATA%/Fluxstream).
  3. Allocates folders for downloaded torrent contents.
  4. Generates and writes the localized docker-compose.yml config.

fluxstream start

Runs composition containers in daemon mode and prints network addresses.

fluxstream start
fluxstream start

Actions performed:

  1. Checks that the Docker daemon is active.
  2. Verifies that fluxstream setup has been run first.
  3. Launches services in the background using docker compose up -d.
  4. Outputs local loopback (http://localhost:3000) and local area network (LAN) connection links.

fluxstream status

Queries container processes and tests backend API port connections.

fluxstream status
fluxstream status

Actions performed:

  1. Lists running containers matching the name fluxstream.
  2. Resolves status of backend service by hitting the http://localhost:8080/health endpoint.
  3. Reports service connectivity and container health states.

fluxstream where

Displays active connection links and local IP configurations.

fluxstream where
fluxstream where

Actions performed:

  1. Scrapes container state.
  2. Resolves LAN IP address configurations.
  3. Displays local and network URL routing paths.

fluxstream stop

Gracefully shuts down Docker Compose container groups.

fluxstream stop
fluxstream stop

Actions performed:

  1. Shuts down running container layers via docker compose down.
  2. Stops API services and client servers while retaining persistent downloaded torrent files.

On this page