> ## Documentation Index
> Fetch the complete documentation index at: https://figranium.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation with Docker Compose (Recommended)

This guide covers the recommended installation method using Docker Compose. This ensures a consistent environment across different platforms (Linux, macOS, Windows) and simplifies dependency management.

## **Prerequisites**

* [Docker](https://docs.docker.com/get-docker/) installed and running.
* [Docker Compose](https://docs.docker.com/compose/install/) (usually included with Docker Desktop).

## **Step-by-Step Installation**

### This command will:

1. Pull the Figranium Docker image from GHCR.
2. Start the container and map the necessary ports.
3. Mount local directories to persist your tasks, settings, and captures.

### **4. Access the Application**

Once the container is running, open your browser and navigate to:

[http://localhost:11345](http://localhost:11345)

You should see the setup screen.

## **Managing the Container**

### **View Logs**

To view the application logs:

```text theme={null}
docker compose logs -f
```

### **Stop the Application**

To stop the container:

```text theme={null}
docker compose down
```

### **Update the Application**

To update to the latest version, pull the latest image and restart:

```text theme={null}
docker compose pull
docker compose up -d
```

## **Volume Persistence**

Figranium uses volume mounts to ensure your data persists even if you delete the container.

* `./data`: Stores `tasks.json`, `proxies.json`, `settings.json`, and execution logs.
* `./captures`: Stores screenshots and recordings.

If you need to backup your data, simply copy these folders.
