Skip to main content

Installation

The easiest way to run Fulmine is using Docker. Make sure you have Docker installed on your machine.

docker run -d \
--name fulmine \
-p 7000:7000 \
-p 7001:7001 \
-v fulmine-data:/app/data \
ghcr.io/arklabshq/fulmine:latest

Once the container is running, you can access the web UI at http://localhost:7001.

To view logs:

docker logs -f fulmine

To stop the container:

docker stop fulmine

To update to the latest version:

docker pull ghcr.io/arklabshq/fulmine:latest
docker stop fulmine && docker rm fulmine
docker run -d \
--name fulmine \
-p 7000:7000 \
-p 7001:7001 \
-v fulmine-data:/app/data \
ghcr.io/arklabshq/fulmine:latest

Using the Binary

Alternatively, you can download the latest release from the releases page for your platform. After downloading:

  1. Extract the binary
  2. Make it executable (on Linux/macOS):
    chmod +x fulmine
  3. Run the binary:
    ./fulmine